@atlaskit/page-layout
Version:
A collection of components which let you compose an application's page layout.
15 lines (14 loc) • 538 B
TypeScript
import { jsx } from '@emotion/react';
import type { SlotHeightProps } from '../../common/types';
/**
* __Top navigation__
*
* Provides a slot for top navigation within the PageLayout.
*
* - [Examples](https://atlassian.design/components/page-layout/examples)
* - [Code](https://atlassian.design/components/page-layout/code)
*
* @deprecated `@atlaskit/page-layout` is deprecated. Use `@atlaskit/navigation-system` instead.
*/
declare const TopNavigation: (props: SlotHeightProps) => jsx.JSX.Element;
export default TopNavigation;