function H2 H2(p: iAtom<HTMLHeadingElement>): JSX.Element A heading for section titles. The H2 requires an H1 atom to exist and for it to be before this one. This hierarchy of H1->H2 is required for a correct accessibility in a page. Examples Usage import { H1, H2 } from 'lunchbox/atoms/Heading.tsx' <H1>Page title</H1> <H2>Section title</H2> <H2>Section title</H2> Parameters p: iAtom<HTMLHeadingElement> Return Type JSX.Element