UNPKG

@atlaskit/page-layout

Version:

A collection of components which let you compose an application's page layout.

18 lines (17 loc) 761 B
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) */ declare const LeftSidebar: (props: LeftSidebarProps) => jsx.JSX.Element; export default LeftSidebar;