about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/icon.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/components/icon.jsx')
-rw-r--r--app/javascript/mastodon/components/icon.jsx21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/javascript/mastodon/components/icon.jsx b/app/javascript/mastodon/components/icon.jsx
new file mode 100644
index 000000000..d3d7c591d
--- /dev/null
+++ b/app/javascript/mastodon/components/icon.jsx
@@ -0,0 +1,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} />
+    );
+  }
+
+}