cosmo-ui
Version:
Common React components
18 lines (12 loc) • 464 B
text/typescript
import { Breakpoint } from './common'
import { FlexProps, FlexShortcutProps, FlexShortcutProp } from './flex'
export interface ColumnProps extends FlexProps {
column?: Breakpoint
columnReverse?: Breakpoint
}
export type ColumnPropsKey = keyof ColumnProps;
export interface ColumnShortcutProps extends FlexShortcutProps {
column: FlexShortcutProp
columnReverse: FlexShortcutProp
}
export type ColumnShortcutPropsKey = keyof ColumnShortcutProps