mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
21 lines
400 B
Lua
21 lines
400 B
Lua
-- Dashboard stat row layout
|
|
|
|
---@class StatRowConfig
|
|
---@field type string
|
|
---@field layout string
|
|
---@field gap number
|
|
---@field children table
|
|
|
|
---@param stats table Array of stat components to display in a row
|
|
---@return StatRowConfig
|
|
local function stat_row(stats)
|
|
return {
|
|
type = "row",
|
|
layout = "flex",
|
|
gap = 16,
|
|
children = stats
|
|
}
|
|
end
|
|
|
|
return stat_row
|