UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 620 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class GoOcticonFold extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m20 22.5l7.5 7.5h-5v7.5h-5v-7.5h-5l7.5-7.5z m7.5-15h-5v-7.5h-5v7.5h-5l7.5 7.5 7.5-7.5z m10 5c0-1.4-1.1-2.5-2.5-2.5h-6.3l-2.5 2.5h7.5l-5 5h-17.4l-5-5h7.5l-2.5-2.5h-6.3c-1.4 0-2.5 1.1-2.5 2.5l6.3 6.2-6.3 6.3c0 1.4 1.1 2.5 2.5 2.5h6.3l2.5-2.5h-7.5l5-5h17.4l5 5h-7.5l2.5 2.5h6.3c1.4 0 2.5-1.1 2.5-2.5l-6.3-6.3 6.3-6.2z"/></g> </IconBase> ); } }