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 HeadingProps { children: ReactNode | ReactNode[]; className?: string; } /** * Heading Two component * @param {*} props * @returns */ declare const HeadingTwo: FunctionComponent<HeadingProps>; export default HeadingTwo;