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

25 lines
509 B
JavaScript
Raw Normal View History

import classNames from 'classnames';
2019-08-13 16:54:29 +01:00
import './icon.scss';
export default class Icon extends PureComponent {
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,
});
return (
<i role='img' alt={id} className={classes} {...other} />
);
}
}