UNPKG

@atlaskit/page

Version:

A page layout organizes sections on a page using a grid and grid columns.

21 lines (20 loc) 559 B
/// <reference types="react" /> import { jsx } from '@emotion/react'; import type { GridColumnProps } from './types'; /** * __Grid column context__ * * @internal */ export declare const GridColumnContext: import("react").Context<{ medium: number; }>; /** * __Grid column__ * * A grid column can span one or more column positions within a grid. * * - [Examples](https://atlaskit.atlassian.com/packages/design-system/page) */ declare const GridColumn: ({ medium, children, testId }: GridColumnProps) => jsx.JSX.Element; export default GridColumn;