react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 457 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaLongArrowLeft extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1792 1896.0833" {...this.props}>
<g><path d="m1792 800v192q0 14-9 23t-23 9h-1248v224q0 21-19 29t-35-5l-384-350q-10-10-10-23 0-14 10-24l384-354q16-14 35-6 19 9 19 29v224h1248q14 0 23 9t9 23z"/></g>
</IconBase>
);
}
}