Skip to content

Instantly share code, notes, and snippets.

@dandgerson
Created October 26, 2019 13:16
Show Gist options
  • Save dandgerson/021b0163d39a9154474b73dfa15bcb2d to your computer and use it in GitHub Desktop.
Save dandgerson/021b0163d39a9154474b73dfa15bcb2d to your computer and use it in GitHub Desktop.
Fontawesome react usage
import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { library } from '@fortawesome/fontawesome-svg-core'
import { faEdit, faCheck, faPen } from '@fortawesome/free-solid-svg-icons'
library.add(
faEdit,
faCheck,
faPen,
)
const Icon = ({ title }) => <FontAwesomeIcon icon={title} />
export default Icon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment