Appearance
Function: Logo()
ts
function Logo(props?: UiLogoProps): Block;Defined in: packages/sdk/src/renderer/blocks/index.ts:1160
Experimental
Logo — the official brand mark, used as the brand anchor in headers, sidebars, and onboarding screens. Renders the brand SVG inline in the brand primary color (theme-adaptive), or a custom image when src is given. name, src, and hidden accept an async function of UI state.
Parameters
| Parameter | Type |
|---|---|
props? | UiLogoProps |
Returns
Examples
ts
Logo({name: 'matterway', size: 64});ts
// Custom image (e.g. a tenant's own brand)
Logo({src: 'https://example.com/acme-logo.png', alt: 'Acme', size: 40});