diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-01-10 15:40:47 -0800 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-01-10 15:40:47 -0800 |
commit | c562d85ee2ba06dd4e9c68e0efa746db5f165861 (patch) | |
tree | 5d55748d89d12ea530b864400538e94f6823e30a | |
parent | a5435bdeba10fce4311153a27b008102c72815ae (diff) |
Remove react-fontawesome
-rw-r--r-- | src/components/social.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/social.js b/src/components/social.js index c17b79a..bbc0bff 100644 --- a/src/components/social.js +++ b/src/components/social.js @@ -1,6 +1,5 @@ import React from 'react' import { css } from 'react-emotion' -import FA from 'react-fontawesome' import { margins } from './globals' const socialEntryStyle = css(` @@ -17,7 +16,7 @@ export const SocialEntry = p => ( className={socialEntryStyle} role="button" > - <FA name={p.iconName} size={p.size} /> + <i className={`fa fa-${p.iconName}`} /> {p.children || null} </a> ) |