react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 672 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaExchange extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1792 1896.0833" {...this.props}>
<g><path d="m1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5z m0-544q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z"/></g>
</IconBase>
);
}
}