react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 676 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaArrowCircleRight extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1536 1896.0833" {...this.props}>
<g><path d="m1285 896q0-27-18-45l-91-91-362-362q-18-18-45-18t-45 18l-91 91q-18 18-18 45t18 45l189 189h-502q-26 0-45 19t-19 45v128q0 26 19 45t45 19h502l-189 189q-19 19-19 45t19 45l91 91q18 18 45 18t45-18l362-362 91-91q18-18 18-45z m251 0q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/></g>
</IconBase>
);
}
}