react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 1.36 kB
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class TiTabsOutline extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m30 6.666666666666667h-16.666666666666664c-1.8400000000000016 0-3.3333333333333357 1.4933333333333332-3.3333333333333357 3.333333333333333v3.333333333333334h-1.666666666666666c-1.8399999999999999 0-3.333333333333334 1.493333333333334-3.333333333333334 3.333333333333334v15c0 1.8399999999999999 1.4933333333333332 3.333333333333332 3.333333333333334 3.333333333333332h15.000000000000002c1.8399999999999999 0 3.333333333333332-1.4933333333333323 3.333333333333332-3.333333333333332v-1.6666666666666679h3.333333333333332c1.8399999999999999 0 3.3333333333333357-1.4933333333333323 3.3333333333333357-3.333333333333332v-16.666666666666668c0-1.8399999999999999-1.4933333333333323-3.333333333333334-3.333333333333332-3.333333333333334z m-21.666666666666664 25v-15h14.166666666666664c0.45833333333333215 0 0.8333333333333321 0.375 0.8333333333333321 0.8333333333333321v14.166666666666668h-14.999999999999998z m21.666666666666664-5h-5v-9.166666666666668c0-1.3783333333333339-1.1216666666666661-2.5-2.5-2.5h-9.166666666666666v-5h16.666666666666664v16.666666666666668z"/></g>
</IconBase>
);
}
}