UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 635 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class GoOcticonTrashcan extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path d="m30 5h-5c0-1.4-1.1-2.5-2.5-2.5h-7.5c-1.4 0-2.5 1.1-2.5 2.5h-5c-1.4 0-2.5 1.1-2.5 2.5v2.5c0 1.4 1.1 2.5 2.5 2.5v22.5c0 1.4 1.1 2.5 2.5 2.5h17.5c1.4 0 2.5-1.1 2.5-2.5v-22.5c1.4 0 2.5-1.1 2.5-2.5v-2.5c0-1.4-1.1-2.5-2.5-2.5z m-2.5 30h-17.5v-22.5h2.5v20h2.5v-20h2.5v20h2.5v-20h2.5v20h2.5v-20h2.5v22.5z m2.5-25h-22.5v-2.5h22.5v2.5z"/></g> </IconBase> ); } }