mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 18:24:53 +00:00
23 lines
436 B
Lua
23 lines
436 B
Lua
-- Nav menu group component
|
|
|
|
---@class MenuGroup
|
|
---@field type string
|
|
---@field label string
|
|
---@field icon? string
|
|
---@field children table
|
|
|
|
---@param label string
|
|
---@param children? table
|
|
---@param icon? string
|
|
---@return MenuGroup
|
|
local function menu_group(label, children, icon)
|
|
return {
|
|
type = "menu_group",
|
|
label = label,
|
|
icon = icon,
|
|
children = children or {}
|
|
}
|
|
end
|
|
|
|
return menu_group
|