react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 620 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoOcticonRepoDelete extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m15 22.5h-2.5v-2.5h2.5v2.5z m0-7.5h-2.5v2.5h2.5v-2.5z m0-5h-2.5v2.5h2.5v-2.5z m0-5h-2.5v2.5h2.5v-2.5z m20-2.5v30c0 1.4-1.1 2.5-2.5 2.5h-12.5v5l-3.7-3.8-3.8 3.8v-5h-5c-1.4 0-2.5-1.1-2.5-2.5v-30c0-1.4 1.1-2.5 2.5-2.5h25c1.4 0 2.5 1.1 2.5 2.5z m-2.5 25h-25v5h5v-2.5h7.5v2.5h12.5v-5z m0-25h-22.5v22.5h22.5v-22.5z"/></g>
</IconBase>
);
}
}