mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-05 19:19:35 +00:00
18 lines
389 B
Lua
18 lines
389 B
Lua
--- Render a stat card component
|
|
---@param label string Stat label
|
|
---@param value number Stat value
|
|
---@param icon string Icon name
|
|
---@return StatCardComponent Stat card component
|
|
local function render_stat(label, value, icon)
|
|
return {
|
|
type = "stat_card",
|
|
props = {
|
|
label = label,
|
|
value = value,
|
|
icon = icon
|
|
}
|
|
}
|
|
end
|
|
|
|
return render_stat
|