Files
talk/plugins/talk-plugin-downvote/client/components/Icon.js
T
2018-03-21 12:30:22 -04:00

11 lines
231 B
JavaScript

import React from 'react';
import cn from 'classnames';
// @TODO change icon when we deprecate FA
export default ({ className }) => (
<i
className={cn('fa', 'fa-arrow-circle-down', className)}
aria-hidden="true"
/>
);