UNPKG

welcome-ui

Version:

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

8 lines (7 loc) 325 B
import { CreateWuiProps } from '../System'; export interface StackOptions { direction?: 'column' | 'row'; spacing?: 'lg' | 'md' | 'sm' | 'xl' | 'xs' | 'xxl' | 'xxs'; } export type StackProps = CreateWuiProps<'div', StackOptions>; export declare const Stack: import('../System').CreateWuiComponent<"div", StackProps>;