UNPKG

react-icons

Version:

svg react icons of popular icon packs using ES6 imports

14 lines (11 loc) 615 B
let React = require('react'); let IconBase = require('react-icon-base'); export default class FaArchive extends React.Component { render() { return ( <IconBase viewBox="0 0 40 40" {...this.props}> <g><path fill="#444" d="m24.3 18.6q0-0.6-0.4-1t-1-0.5h-5.8q-0.5 0-1 0.5t-0.4 1 0.4 1 1 0.4h5.8q0.5 0 1-0.4t0.4-1z m12.8-4.3v21.4q0 0.6-0.4 1t-1 0.4h-31.4q-0.6 0-1-0.4t-0.4-1v-21.4q0-0.6 0.4-1t1-0.4h31.4q0.6 0 1 0.4t0.4 1z m1.5-10v5.7q0 0.6-0.5 1t-1 0.4h-34.2q-0.6 0-1-0.4t-0.5-1v-5.7q0-0.6 0.5-1t1-0.4h34.2q0.6 0 1 0.4t0.5 1z"/></g> </IconBase> ); } }