A React component to render Zooid like headings. This component should be used instead of h1 - h6
npm install --save zooid-heading
Prop | Type | Default | Description |
---|---|---|---|
className | string | Additional css classes for your heading | |
level | number | 1 | Numerical value from 1 - 6 (1 being the largest) |
textAlign | string | left | Sets text-align property. Options: left, right, center |
uppercase | boolean | false | DOES THIS |
<Heading level={1}>Level 1 Header</Heading>
<Heading uppercase>Uppercase Header</Heading>
<Heading textAlign="center">Header - Text Aligned Center</Heading>