react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 745 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoOcticonBug extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m27.5 25h7.5v-2.5h-7.5v-2.5l7.9-2.6-0.8-2.3-7.1 2.4v-2.5c0-1.4-1.1-2.5-2.5-2.5v-2.5c0-1.2-0.9-2.2-2.1-2.4l2.6-2.6h4.5v-2.5h-5.5l-5 5h-1.5l-5-5h-5.5v2.5h4.5l2.6 2.6c-1.2 0.2-2.1 1.2-2.1 2.4v2.5c-1.4 0-2.5 1.1-2.5 2.5v2.5l-7.1-2.4-0.8 2.3 7.9 2.6v2.5h-7.5v2.5h7.5v2.5l-7.9 2.6 0.8 2.3 7.1-2.4v2.5c0 1.4 1.1 2.5 2.5 2.5h2.5l2.5-2.5v-17.5h2.5v17.5l2.5 2.5h2.5c1.4 0 2.5-1.1 2.5-2.5v-2.5l7.1 2.4 0.8-2.3-7.9-2.6v-2.5z m-5-12.5h-7.5v-2.5h7.5v2.5z"/></g>
</IconBase>
);
}
}