~cytrogen/masto-fe

ref: edec08b970c7f6ecbd69ffd1eecdfc8c878fdb5d masto-fe/app/javascript/flavours/glitch/components/icon.jsx -rw-r--r-- 506 bytes
edec08b9 — Claire Disable full-width media in thread view 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 role='img' className={classNames('fa', `fa-${id}`, className, { 'fa-fw': fixedWidth })} {...other} />
    );
  }

}