react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 606 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoOcticonUnfold extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m31.2 21.2l6.3 6.3c0 1.4-1.1 2.5-2.5 2.5h-10v-2.5h8.7l-5-5h-17.4l-5 5h8.7v2.5h-10c-1.4 0-2.5-1.1-2.5-2.5l6.3-6.3-6.3-6.2c0-1.4 1.1-2.5 2.5-2.5h10v2.5h-8.7l5 5h17.4l5-5h-8.7v-2.5h10c1.4 0 2.5 1.1 2.5 2.5l-6.3 6.2z m-13.7-3.7h5v-7.5h5l-7.5-7.5-7.5 7.5h5v7.5z m5 7.5h-5v7.5h-5l7.5 7.5 7.5-7.5h-5v-7.5z"/></g>
</IconBase>
);
}
}