UNPKG

react-layout-kit

Version:
6 lines (5 loc) 501 B
import type { DetailedHTMLProps, HTMLAttributes } from 'react'; export declare type ContentPosition = 'center' | 'end' | 'flex-end' | 'flex-start' | 'start' | 'stretch' | 'baseline'; export declare type ContentDistribution = 'center' | 'space-around' | 'space-between' | 'space-evenly' | 'stretch'; export declare type FlexDirection = 'vertical' | 'vertical-reverse' | 'horizontal' | 'horizontal-reverse'; export declare type DivProps = DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLDivElement>;