mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 07:44:56 +00:00
22 lines
462 B
Lua
22 lines
462 B
Lua
-- Supergod sidebar component
|
|
|
|
---@class SidebarComponent
|
|
---@field type string
|
|
---@field width string
|
|
---@field theme string
|
|
---@field items table[]
|
|
|
|
---Returns the supergod sidebar component configuration
|
|
---@param items? table[]
|
|
---@return SidebarComponent
|
|
local function supergod_sidebar(items)
|
|
return {
|
|
type = "supergod_sidebar",
|
|
width = "320px",
|
|
theme = "system",
|
|
items = items or {}
|
|
}
|
|
end
|
|
|
|
return supergod_sidebar
|