~cytrogen/masto-fe

ref: 5d18840ab99fbb1ad42824ee566545aaf47fdd7d masto-fe/app/javascript/mastodon/components/icon.jsx -rw-r--r-- 495 bytes
5d18840a — Claire Fix more JS linting issues (#2212) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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} />
    );
  }

}