2019-07-02 08:10:25 +01:00
|
|
|
import classNames from 'classnames';
|
|
|
|
|
2019-07-29 20:20:00 +01:00
|
|
|
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;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<i role='img' alt={id} className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|