Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Created March 22, 2017 19:44
Show Gist options
  • Save pbojinov/3ea91a03c7a824abeadc92fda2b27105 to your computer and use it in GitHub Desktop.
Save pbojinov/3ea91a03c7a824abeadc92fda2b27105 to your computer and use it in GitHub Desktop.
Reusable PNG Icons in React
export const ICONS = {
ADD_CARD: require("./assets/icon_credit_card_add.png")
};
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>
);
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