Skip to content

Instantly share code, notes, and snippets.

@zachhardesty7
Last active December 29, 2019 20:21
Show Gist options
  • Save zachhardesty7/7eb00d8081e81889ae386c4d9be7021a to your computer and use it in GitHub Desktop.
Save zachhardesty7/7eb00d8081e81889ae386c4d9be7021a to your computer and use it in GitHub Desktop.
// Icon.jsx
import { FontAwesomeIcon as FAIcon } from '@fortawesome/react-fontawesome'
export const Icon = ({
data,
inverse,
className = '',
}) => (
<a class={className}>
<FAIcon icon={data} inverse={inverse} />
</a>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment