react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 500 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class FaLongArrowLeft extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m39 17.9v4.2q0 0.3-0.2 0.5t-0.5 0.2h-27.1v4.9q0 0.4-0.5 0.6t-0.7-0.1l-8.4-7.6q-0.2-0.3-0.2-0.5 0-0.3 0.2-0.6l8.4-7.7q0.3-0.3 0.7-0.1 0.4 0.2 0.4 0.6v4.9h27.2q0.3 0 0.5 0.2t0.2 0.5z"/></g>
</IconBase>
);
}
}