UNPKG

welcome-ui

Version:

Customizable design system with react • styled-components • styled-system and ariakit.

15 lines (14 loc) 441 B
import { CreateWuiProps, WuiProps } from '../System'; export interface ItemOptions { /** same as gridArea */ area?: WuiProps['gridArea']; /** same as gridColumn */ column?: WuiProps['gridColumn']; /** same as gridRow */ row?: WuiProps['row']; } export type ItemProps = CreateWuiProps<'div', ItemOptions>; /** * @name Grid.Item */ export declare const Item: import('../System').CreateWuiComponent<"div", ItemProps>;