Created
March 22, 2017 19:44
-
-
Save pbojinov/3ea91a03c7a824abeadc92fda2b27105 to your computer and use it in GitHub Desktop.
Reusable PNG Icons in React
This file contains 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
export const ICONS = { | |
ADD_CARD: require("./assets/icon_credit_card_add.png") | |
}; |
This file contains 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'; | |
import Icon from "./Icon"; | |
import { ICONS } from "./constants"; | |
const Demo = ({}) => ( | |
<div> | |
Here's my cool icon: <Icon icon={ICON.ADD_CARD}/> | |
</div> | |
); |
This file contains 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, { PropTypes } from "react"; | |
const Icon = props => { | |
const styles = { | |
img: { | |
width: `${props.size}`, | |
height: `${props.size}` | |
} | |
}; | |
return <img style={styles.img} src={props.icon} />; | |
}; | |
Icon.propTypes = { | |
size: PropTypes.string, | |
icon: PropTypes.string.isRequired | |
}; | |
Icon.defaultProps = { | |
size: 32 | |
}; | |
export default Icon; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment