gab-social/app/javascript/gabsocial/components/icon/index.js

24 lines
487 B
JavaScript
Raw Normal View History

2019-07-02 08:10:25 +01:00
import classNames from 'classnames';
export default class Icon extends PureComponent {
2019-07-02 08:10:25 +01:00
static propTypes = {
id: PropTypes.string.isRequired,
className: PropTypes.string,
fixedWidth: PropTypes.bool,
};
render () {
const { id, className, fixedWidth, ...other } = this.props;
const classes = classNames('fa', `fa-${id}`, className, {
'fa-fw': fixedWidth,
});
2019-07-02 08:10:25 +01:00
return (
<i role='img' alt={id} className={classes} {...other} />
2019-07-02 08:10:25 +01:00
);
}
}