mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
feat(nav_menu): implement menu item, group, and divider components feat(ui_header): create logo, user, and actions sections for header rendering
12 lines
207 B
Lua
12 lines
207 B
Lua
-- Dashboard flex layout
|
|
local function flex(direction, gap, align)
|
|
return {
|
|
type = "flex",
|
|
direction = direction or "row",
|
|
gap = gap or 16,
|
|
align = align or "stretch"
|
|
}
|
|
end
|
|
|
|
return flex
|