Files
metabuilder/packages/ui_header/seed/scripts/render/logo.lua

22 lines
424 B
Lua

-- Header logo section
---@class LogoComponent
---@field type string
---@field url string
---@field title string
---@field link string
---@param logo_url? string
---@param title? string
---@return LogoComponent
local function logo_section(logo_url, title)
return {
type = "logo",
url = logo_url or "/logo.svg",
title = title or "MetaBuilder",
link = "/"
}
end
return logo_section