You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
495 B
21 lines
495 B
import React from 'react'; |
|
import PropTypes from 'prop-types'; |
|
import classNames from 'classnames'; |
|
|
|
export default class Icon extends React.PureComponent { |
|
|
|
static propTypes = { |
|
id: PropTypes.string.isRequired, |
|
className: PropTypes.string, |
|
fixedWidth: PropTypes.bool, |
|
}; |
|
|
|
render () { |
|
const { id, className, fixedWidth, ...other } = this.props; |
|
|
|
return ( |
|
<i className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} /> |
|
); |
|
} |
|
|
|
}
|
|
|