react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 728 B
JSX
import React, { Component } from 'react';
export default class LabelOutlineIcon 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-label-outline-icon ${this.props.className}`}><path d="M16 16.998H5v-10h11l3.546 5m-1.914-6.155A1.996 1.996 0 0 0 16 4.998l-11 .01c-1.103 0-2 .886-2 1.99v10c0 1.104.897 1.99 2 1.99l11 .01c.674 0 1.271-.334 1.633-.845L22 11.998l-4.367-6.155z"/></svg>
)
}
}