react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 699 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoOcticonFileZip extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m26.2 2.5h-18.7c-1.4 0-2.5 1.1-2.5 2.5v30c0 1.4 1.1 2.5 2.5 2.5h25c1.4 0 2.5-1.1 2.5-2.5v-23.8l-8.8-8.7z m6.3 32.5h-25v-30h7.5v2.5h2.5v-2.5h7.5l7.5 7.5v22.5z m-15-25v-2.5h2.5v2.5h-2.5z m-2.5 0h2.5v2.5h-2.5v-2.5z m2.5 5v-2.5h2.5v2.5h-2.5z m-2.5 0h2.5v2.5h-2.5v-2.5z m2.5 5v-2.5h2.5v2.5h-2.5z m-2.5 3.2c-1.5 0.9-2.5 2.5-2.5 4.3v2.5h10v-2.5c0-2.8-2.2-5-5-5v-2.5h-2.5v3.2z m5 1.8v2.5h-5v-2.5h5z"/></g>
</IconBase>
);
}
}