Skip to content

Instantly share code, notes, and snippets.

@kenakingkong
Last active November 27, 2020 23:17
Show Gist options
  • Save kenakingkong/cce496da35f882a8f42d4144860801c0 to your computer and use it in GitHub Desktop.
Save kenakingkong/cce496da35f882a8f42d4144860801c0 to your computer and use it in GitHub Desktop.
@src/components/icons.js
//src/components/icons.js
import React from "react"
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import {faMedium, faTwitter} from '@fortawesome/free-brands-svg-icons'
import {faEnvelope} from '@fortawesome/free-solid-svg-icons'
export const IconMedium = <FontAwesomeIcon icon={faMedium} size="1x" />
export const IconTwitter = <FontAwesomeIcon icon={faTwitter} size="1x" />
export const IconEnvelope = <FontAwesomeIcon icon={faEnvelope} size="1x" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment