UNPKG

@mingoo/amotify

Version:
10 lines (9 loc) 333 B
/// <reference types="react" /> import { TagProps, ReactElement } from '../../@declaration/_'; import { React } from '../../@middleware/_'; type BoxInput = TagProps.BasicElement & { children?: ReactElement; } & React.HTMLAttributes<HTMLDivElement>; declare const Box: React.FC<BoxInput>; export default Box; export { BoxInput };