UNPKG

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

Version:

This is shared components library for spritz projects.

13 lines (12 loc) 295 B
import { ReactNode, FunctionComponent } from 'react'; interface ParagraphProps { children: ReactNode | ReactNode[]; className?: string; } /** * Paragraph component * @param {*} props * @returns */ declare const Paragraph: FunctionComponent<ParagraphProps>; export default Paragraph;