react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 729 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoOcticonHubot extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m10 15c-1.4 0-2.5 1.1-2.5 2.5v5c0 1.4 1.1 2.5 2.5 2.5h20c1.4 0 2.5-1.1 2.5-2.5v-5c0-1.4-1.1-2.5-2.5-2.5h-20z m20 4.4l-3.1 3.1h-3.8l-3.1-3.1-3.1 3.1h-3.8l-3.1-3.1v-1.9h1.9l3.1 3.1 3.1-3.1h3.8l3.1 3.1 3.1-3.1h1.9v1.9z m-15 8.1h10v2.5h-10v-2.5z m5-22.5c-9.6 0-17.5 7.3-17.5 16.2v11.3c0 1.4 1.1 2.5 2.5 2.5h30c1.4 0 2.5-1.1 2.5-2.5v-11.3c0-8.9-7.9-16.2-17.5-16.2z m15 27.5h-30v-11.3c0-7.7 6.6-13.9 15-13.9s15 6.2 15 13.9v11.3z"/></g>
</IconBase>
);
}
}