Last active
May 28, 2016 02:52
-
-
Save davidgilbertson/5c1239667127c88e58c33512ad69561f to your computer and use it in GitHub Desktop.
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 {PropTypes} = React; | |
| const icons = { | |
| trash: 'M192 1024h640l64-704h-768zM640 128v-128h-256v128h-320v192l64-64h768l64 64v-192h-320zM576 128h-128v-64h128v64z', | |
| facebook: 'M608 192h160v-192h-160c-123.514 0-224 100.486-224 224v96h-128v192h128v512h192v-512h160l32-192h-192v-96c0-17.346 14.654-32 32-32z', | |
| }; | |
| const Icon = props => ( | |
| <svg width="22" height="22" viewBox="0 0 1024 1024"> | |
| <path d={icons[props.icon]}></path> | |
| </svg> | |
| ); | |
| Icon.propTypes = { | |
| icon: PropTypes.string.isRequired, | |
| }; | |
| export default Icon; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment