@atlaskit/side-navigation
Version:
A highly composable side navigation component that supports nested views.
20 lines (19 loc) • 563 B
TypeScript
/// <reference types="react" />
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { jsx } from '@emotion/react';
export interface NavigationHeaderProps {
children: JSX.Element | JSX.Element[];
}
/**
* __Navigation header__
*
* Allows for customisation of the header.
*
* - [Examples](https://atlassian.design/components/side-navigation/examples#header-and-footer)
* - [Code](https://atlassian.design/components/side-navigation/code)
*/
declare const NavigationHeader: (props: NavigationHeaderProps) => jsx.JSX.Element;
export default NavigationHeader;