about summary refs log blame commit diff
path: root/app/javascript/flavours/glitch/components/icon.js
blob: d8a17722fed2a7bbcaf4060d8587f71ebdd29524 (plain) (tree)
1
2
3
4
5
6
                          
                                    
 
                                                       
 













                                                                                                              
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 role='img' className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />
    );
  }

}