react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 647 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class GoOcticonUnfold extends React.Component {
render() {
return (
<IconBase viewBox="0 0 896 1024.032" {...this.props}>
<g><path d="m736 544.001l160 160c0 35-29 64-64 64h-256v-64h224l-128-128h-448l-128 128h224v64h-256c-35 0-64-29-64-64l160-160-160-160c0-35 29-64 64-64h256v64h-224l128 128h448l128-128h-224v-64h256c35 0 64 29 64 64l-160 160z m-352-96h128v-192h128l-192-191.99999999999997-192 191.99999999999997h128v192z m128 192h-128v192h-128l192 192 192-192h-128v-192z"/></g>
</IconBase>
);
}
}