UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 585 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class IoArchive extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m17.5 24.1l-10-9.1h6.3v-7.5h7.5v7.5h6.2z m16.3-0.9c0.9 0.5 1.4 1.5 1.2 2.5l-0.7 5.2c-0.2 1.1-0.7 1.6-2.2 1.6h-29.2c-1.4 0-2-0.5-2.2-1.6l-0.7-5.2c-0.2-1 0.2-2 1.1-2.5l5.6-4.3h3.3l-4.8 4.9h3.9c0.1 0 0.4 0 0.4 0.2l1.4 3.5h13.2l1.4-3.5c0-0.2 0.2-0.2 0.4-0.2h3.9l-4.8-4.9h3.3z"/></g> </IconBase> ); } }