mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
25 lines
520 B
Lua
25 lines
520 B
Lua
-- Level 2 sidebar component
|
|
|
|
---@class UIComponent
|
|
---@field type string
|
|
---@field props? table
|
|
---@field children? UIComponent[]
|
|
|
|
---@class SidebarLayoutComponent
|
|
---@field type "sidebar"
|
|
---@field width string
|
|
---@field items UIComponent[]
|
|
|
|
---Renders the sidebar component with navigation items
|
|
---@param items UIComponent[]?
|
|
---@return SidebarLayoutComponent
|
|
local function sidebar(items)
|
|
return {
|
|
type = "sidebar",
|
|
width = "250px",
|
|
items = items or {}
|
|
}
|
|
end
|
|
|
|
return sidebar
|