UNPKG

@awsui/components-react

Version:

AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A

15 lines (14 loc) 619 B
import React from 'react'; import { BaseComponentProps } from '../internal/base-component'; export interface ColumnLayoutProps extends BaseComponentProps { columns?: number; variant?: ColumnLayoutProps.Variant; borders?: ColumnLayoutProps.Borders; disableGutters?: boolean; children?: React.ReactNode; } export declare namespace ColumnLayoutProps { type Variant = 'default' | 'text-grid'; type Borders = 'none' | 'vertical' | 'horizontal' | 'all'; } export default function ColumnLayout({ columns, variant, borders, disableGutters, children, ...restProps }: ColumnLayoutProps): JSX.Element;