- NeuHeading
NeuHeading is a component by which you can put interactive headings in your web pages.
Props
This component accepts 3 props:
text- text which you want as a headingfontSize- font-size of heading (in px)fontWeight- font-weight of heading
import { NeuHeading } from 'neumorphic-ui';class Example extends Component {render () {return (<NeuHeading text="Neumorphic UI" fontSize="128px" fontWeight="900" />)}}