react-google-font-loader
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

GoogleFontLoader npm

This is a really simple component that can automatically handle loading Google fonts for you.

You simply pass it a config array and it will load the fonts for you by appending a <link /> tag to the document head. It will update itself if the config changes, and will remove itself on unmount.

Installation

Install with either yarn or npm:

yarn add react-google-font-loader
npm install --save react-google-font-loader

Usage

// Import the Component, you can call it whatever you like.
import GoogleFontLoader from 'react-google-font-loader';
 
const App = () => (
  <>
    {/* Use it! */}
    <GoogleFontLoader
      fonts={[
        {
          font: 'Roboto',
          weights: [400, '400i'],
        },
        {
          font: 'Roboto Mono',
          weights: [400, 700],
        },
      ]}
      subsets={['cyrillic-ext', 'greek']}
    />
 
    <p style={{ fontFamily: 'Roboto Mono, monospaced' }}>This will be in Roboto Mono!</p>
    <p style={{ fontFamily: 'Roboto, sans-serif' }}>This will be in Roboto!</p>
  </>
);

Props

The Component takes two props: fonts and subsets.

fonts

fonts should be an array of objects describing the fonts you want to load:

[
    {
        font: 'Roboto Mono', // The name of the font on Google Fonts.
        weights: [400, 700], // An array of weights you want to load, can be strings or numbers.
    },
    // ...
    // You can include as many of these objects as you want.
]

subsets

subsets should be an array of subsets you want to load. This prop is optional - if you do not specify a subsets prop then the 'subset' query param will be omitted from the URL and only latin will be loaded.

['cyrillic-ext', 'greek']

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.1.05,173latest

Version History

VersionDownloads (Last 7 Days)Published
1.1.05,173
1.0.557
1.0.41
1.0.4-alpha.13
1.0.31
1.0.2-aplha.14
1.0.21
1.0.2-alpha.23
1.0.2-alpha.11
1.0.12
1.0.00

Package Sidebar

Install

npm i react-google-font-loader

Weekly Downloads

5,246

Version

1.1.0

License

MIT

Unpacked Size

247 kB

Total Files

7

Last publish

Collaborators

  • jakewtaylor