react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 788 B
JSX
import React, { Component } from 'react';
export default class TabUnselectedIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-tab-unselected-icon ${this.props.className}`}><path d="M15 20.998h2v-2h-2m-4 2h2v-2l-2 .001m8-6.001h2v-2h-2m0 10a2 2 0 0 0 2-2h-2m-12-14h2v-2H7m12 14h2v-2h-2m0-12h-8v6h10v-4a2 2 0 0 0-2-2zm-14 18v-2H3a2 2 0 0 0 2 2zm-2-4h2v-2H3m4 6h2v-1.999L7 19M3 4.998h2v-2a2 2 0 0 0-2 2zm0 8h2v-2H3m0-2h2v-2H3v2z"/></svg>
)
}
}