UNPKG

react-odyssey

Version:
14 lines (13 loc) 330 B
import React, { ReactNode } from 'react'; import './Box.scss'; declare type BoxProps = { heading: string; loading?: boolean; action?: ReactNode; className?: string; style?: React.CSSProperties; id?: string; 'data-se'?: string; }; export declare const Box: React.FunctionComponent<BoxProps>; export {};