Skip to content

Instantly share code, notes, and snippets.

@dhAlcojor
Last active April 24, 2022 23:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhAlcojor/5b8b7c51cc813e30f4a5bcfa91b54f11 to your computer and use it in GitHub Desktop.
Save dhAlcojor/5b8b7c51cc813e30f4a5bcfa91b54f11 to your computer and use it in GitHub Desktop.
Font Awesome library with Gatsby
import { library } from '@fortawesome/fontawesome-svg-core';
import { faChevronLeft } from '@fortawesome/free-solid-svg-icons';
export function onClientEntry() {
library.add(faChevronLeft);
}
...
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
...
<FontAwesomeIcon icon="chevron-left" />
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment