
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
font-picker-react
Advanced tools
Font picker component for previewing, selecting, and downloading Google Fonts
A simple, customizable font selector allowing users to preview, choose, and use Google Fonts on your website.
ā Demo
This is the React component for the Font Picker package.
Add the package as a dependency using NPM:
npm install font-picker-react
Then add the <FontPicker />
component somewhere in your React project:
import FontPicker from 'font-picker-react';
<FontPicker
apiKey="YOUR_API_KEY" // Google API key
defaultFont={'Open Sans'}
options={{ limit: 50 }}
/>
Add className="apply-font"
to all JSX elements you want to apply the selected font to.
When the user selects a font using the font picker, it will automatically be downloaded (added as a <link>
to the document's head) and applied to all HTML elements of the "apply-font"
class.
The following props can be passed to the FontPicker
component:
apiKey
(required): Google API key (can be generated here)defaultFont
: Font that is selected on initialization (default: 'Open Sans'
)options
: Object with additional (optional) parameters:
families
: If only specific fonts shall appear in the list, specify their names in an array (default: all font families)categories
: Array of font categories ā possible values: 'sans-serif', 'serif', 'display', handwriting', 'monospace'
(default: all categories)variants
: Array of variants which the fonts must include and which will be downloaded; the first variant in the array will become the default variant (and will be used in the font picker and the .apply-font
class); e.g. ['regular', 'italic', '700', '700italic']
(default: ['regular']
)limit
: Maximum number of fonts to be displayed in the list (the least popular fonts will be omitted; default: 100
)sort
: Sorting attribute for the font list ā possible values: 'alphabetical'
(default), 'popularity'
onChange
: Function which is executed whenever the user changes the active font and its stylesheet finishes downloadingFAQs
Font selector component for Google Fonts
The npm package font-picker-react receives a total of 3,429 weekly downloads. As such, font-picker-react popularity was classified as popular.
We found that font-picker-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.Ā It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.