react-layout-kit
Version:
a npm develop template
6 lines (5 loc) • 501 B
TypeScript
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>;