We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Heading
Not much you need to do here, mostly a wrapper around <h1>, <h2>, etc.
<h1>
<h2>
Eg:
import { Html } from '@react-email/html'; import { Heading } from '@react-email/heading'; const Email = () => { return ( <Html lang="en"> <Heading size="1">Lorem</Heading> <Heading size="2">Ipsum</Heading> <Heading size="3">Dolor</Heading> <Heading size="4">Sit</Heading> <Heading size="5">Amet</Heading> <Heading size="6">Consectetur</Heading> </Html> ); };
The text was updated successfully, but these errors were encountered:
Another idea is to have a more native HTML experience and create something like <H1>, <H2>, etc.
<H1>
<H2>
Sorry, something went wrong.
bukinoshita
Successfully merging a pull request may close this issue.
Not much you need to do here, mostly a wrapper around
<h1>
,<h2>
, etc.Eg:
The text was updated successfully, but these errors were encountered: