UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

18 lines 478 B
import { InternalColumnLayoutProps } from './interfaces'; export declare const COLUMN_TRIGGERS: readonly ["default", "xxs", "xs"]; export type ColumnLayoutBreakpoint = (typeof COLUMN_TRIGGERS)[number] | null; /** * A responsive grid layout. */ export default function ColumnLayout({ columns, variant, borders, disableGutters, minColumnWidth, children, __tagOverride, __breakpoint, __internalRootRef, ...restProps }: InternalColumnLayoutProps): JSX.Element;