Appearance
Function: headerBar()
ts
function headerBar(props: HeaderBarProps): HeaderBarElement;Defined in: src/UI/blocks/headerBar.tsx:31
Header bar component for displaying title and description.
Parameters
| Parameter | Type | Description |
|---|---|---|
props | HeaderBarProps | Configuration object |
Returns
HeaderBarElement
Example
Basic usage with title and description
headerBar({
title: "Header title",
description: "Header description"
});