UNPKG

@activate-spritz-components/spritz-ui-components

Version:

This is shared components library for spritz projects.

8 lines (7 loc) 232 B
import { ReactNode, FunctionComponent } from 'react'; interface BoxShadowProps { className?: string; children: ReactNode | ReactNode[]; } declare const BoxShadow: FunctionComponent<BoxShadowProps>; export default BoxShadow;