Last active
January 17, 2019 14:44
-
-
Save simple17/11ee87bd7548b2d0dd505a8a00e8a3c6 to your computer and use it in GitHub Desktop.
[Dummy component] #react
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const Icon = ({ type }) => ( | |
<i className={'fa fa-'+type}></i> | |
) | |
export default Icon; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment