UNPKG

visual-box

Version:

Draw a box on the re-rendering component.

8 lines (7 loc) 220 B
import React from 'react'; declare type Box = { [key: string]: any; children?: React.ReactNode; }; declare const Box: (Component: React.ElementType<Box | any>) => (props: Box) => JSX.Element; export default Box;