0.0.6 • Published 10 days ago

@react-email/font v0.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
10 days ago

React Email Font cover

Install

Install component from your command line.

With yarn

yarn add @react-email/font -E

With npm

npm install @react-email/font -E

Getting started

Add the component to your email template.

import { Html } from "@react-email/html";
import { Head } from "@react-email/head";
import { Font } from "@react-email/font";

const Email = () => {
  return (
    <Html lang="en">
      <Head>
        <Font
          fontFamily="Roboto"
          fallbackFontFamily="Verdana"
          webFont={{
            url: "https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2",
            format: "woff2",
          }}
        />
      </Head>
    </Html>
  );
};

Support

This component was tested using the most popular email clients.

Gmail ✔Apple Mail ✔Outlook ✔Yahoo! Mail ✔HEY ✔Superhuman ✔

License

MIT License