Skip to content

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

ParameterTypeDescription
propsHeaderBarPropsConfiguration object

Returns

HeaderBarElement

Example

Basic usage with title and description

headerBar({
  title: "Header title",
  description: "Header description"
});

Matterway Assistant SDK Documentation