summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2019-03-20 04:13:08 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2019-03-20 04:13:08 -0700
commit1781d2057191c9c4d71eaac7bb3dfbe8d11d6ab8 (patch)
treeb948109deb7bcd140be272884a0ec034c7d4f01f
parentd588986111c52c4ed4ea4e80419361aa56557fb7 (diff)
Use custom FontAwesome implementation
-rw-r--r--src/components/project.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/project.js b/src/components/project.js
index b827d70..4aba5a0 100644
--- a/src/components/project.js
+++ b/src/components/project.js
@@ -1,7 +1,7 @@
import React from 'react'
import { css } from '@emotion/core'
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
+import { FontAwesome } from './font-awesome'
import { faLink } from '@fortawesome/free-solid-svg-icons'
import { Tag } from './tag'
@@ -74,7 +74,7 @@ export const Project = p => {
>
<div css={linkIconStyle}>
<h2 css={projectHeadingStyle}>{p.name}</h2>
- <FontAwesomeIcon icon={faLink} />
+ <FontAwesome icon={faLink} />
</div>
</a>
{p.inProd ? <Tag fontSize="0.8em">In Prod</Tag> : null}