react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 2.46 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class TiFolderAdd extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 10h-10c0-1.8399999999999999-1.4933333333333323-3.333333333333334-3.333333333333332-3.333333333333334h-6.666666666666668c-2.756666666666666 8.881784197001252e-16-5 2.243333333333334-5 5.000000000000002v16.666666666666668c0 2.7566666666666677 2.243333333333334 5 5 5h20c2.7566666666666677 0 5-2.2433333333333323 5-5v-13.333333333333336c0-2.7566666666666677-2.2433333333333323-5-5-5z m0 20h-20c-0.9199999999999999 0-1.666666666666666-0.7466666666666661-1.666666666666666-1.6666666666666679v-11.666666666666668h6.666666666666666c0.4583333333333339 0 0.8333333333333339-0.375 0.8333333333333339-0.8333333333333339s-0.375-0.8333333333333304-0.8333333333333339-0.8333333333333304h-6.666666666666666v-3.333333333333332c0-0.9199999999999999 0.7466666666666661-1.666666666666666 1.666666666666666-1.666666666666666h6.666666666666668c0 1.8399999999999999 1.4933333333333323 3.333333333333334 3.333333333333332 3.333333333333334h10c0.9200000000000017 0 1.6666666666666679 0.7466666666666661 1.6666666666666679 1.666666666666666h-6.666666666666668c-0.45833333333333215 0-0.8333333333333321 0.375-0.8333333333333321 0.8333333333333339s0.375 0.8333333333333321 0.8333333333333321 0.8333333333333321h6.666666666666668v11.666666666666668c0 0.9200000000000017-0.7466666666666661 1.6666666666666679-1.6666666666666679 1.6666666666666679z m-5-10h-3.333333333333332v-3.333333333333332c0-0.9216666666666669-0.745000000000001-1.666666666666666-1.6666666666666679-1.666666666666666s-1.6666666666666679 0.7449999999999992-1.6666666666666679 1.666666666666666v3.333333333333332h-3.333333333333332c-0.9216666666666669 0-1.666666666666666 0.745000000000001-1.666666666666666 1.6666666666666679s0.7449999999999992 1.6666666666666679 1.666666666666666 1.6666666666666679h3.333333333333332v3.333333333333332c0 0.9216666666666669 0.745000000000001 1.6666666666666679 1.6666666666666679 1.6666666666666679s1.6666666666666679-0.745000000000001 1.6666666666666679-1.6666666666666679v-3.333333333333332h3.333333333333332c0.9216666666666669 0 1.6666666666666679-0.745000000000001 1.6666666666666679-1.6666666666666679s-0.745000000000001-1.6666666666666679-1.6666666666666679-1.6666666666666679z"/></g>
</IconBase>
);
}
}