mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 18:24:53 +00:00
19 lines
362 B
Lua
19 lines
362 B
Lua
-- Render sidebar header
|
|
require("sidebar.types")
|
|
|
|
local M = {}
|
|
|
|
---@param props SidebarProps
|
|
---@return UIComponent
|
|
function M.header(props)
|
|
return {
|
|
type = "Box",
|
|
props = { className = "p-4 border-b" },
|
|
children = {
|
|
{ type = "Typography", props = { variant = "h6", text = props.title or "Menu" } }
|
|
}
|
|
}
|
|
end
|
|
|
|
return M
|