UNPKG

react-basic-elements

Version:

A lightweight collection of basic React layout and UI primitives with built-in style support.

8 lines (7 loc) 284 B
import { CSSProperties, FC, HTMLAttributes } from 'react'; import { CommonStyles } from '../types'; export interface BoxProps extends HTMLAttributes<HTMLDivElement>, CommonStyles { style?: CSSProperties; flex?: CSSProperties['flex']; } export declare const Box: FC<BoxProps>;