Files
metabuilder/packages/ui_level6/seed/scripts/layout/supergod_toolbar.lua
2025-12-30 12:31:06 +00:00

22 lines
509 B
Lua

-- Supergod toolbar component
---@class ToolbarComponent
---@field type string
---@field actions table[]
---@field showAllTenants boolean
---@field showSystemMetrics boolean
---Returns the supergod toolbar component configuration
---@param actions? table[]
---@return ToolbarComponent
local function supergod_toolbar(actions)
return {
type = "supergod_toolbar",
actions = actions or {},
showAllTenants = true,
showSystemMetrics = true
}
end
return supergod_toolbar