@atlaskit/page-layout
Version:
A collection of components which let you compose an application's page layout.
20 lines (19 loc) • 861 B
TypeScript
import { jsx } from '@emotion/react';
import type { LeftSidebarProps } from '../../common/types';
/**
* __Left sidebar__
*
* Provides a slot for a left sidebar within the PageLayout.
*
* On smaller viewports, the left sidebar can no longer be expanded. Instead, expanding it will
* put it into our "flyout mode" to lay overtop (which in desktop is explicitly a hover state).
* This ensures the contents behind do not reflow oddly and allows for a better experience
* resizing between mobile and desktop.
*
* - [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 LeftSidebar: (props: LeftSidebarProps) => jsx.JSX.Element;
export default LeftSidebar;