Files
metabuilder/packages/nav_menu/seed/scripts/items/group.lua
T

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