react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 571 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class MdTabUnselected extends React.Component {
render() {
return (
<IconBase viewBox="0 0 24 24" {...this.props}>
<g><path d="M1 9h2V7H1v2zm0 4h2v-2H1v2zm0-8h2V3c-1.1 0-2 .9-2 2zm8 16h2v-2H9v2zm-8-4h2v-2H1v2zm2 4v-2H1c0 1.1.9 2 2 2zM21 3h-8v6h10V5c0-1.1-.9-2-2-2zm0 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zm16 16c1.1 0 2-.9 2-2h-2v2zm0-8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2z"/></g>
</IconBase>
);
}
}