UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 686 B
import React, { Component } from 'react'; export default class LabelIcon 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-icon ${this.props.className}`}><path d="M17.632 5.843A1.998 1.998 0 0 0 16 4.998l-11 .01c-1.104 0-2 .886-2 1.99v10c0 1.105.896 1.99 2 1.99l11 .01c.674 0 1.271-.333 1.633-.844L22 11.998l-4.367-6.155z"/></svg> ) } }