UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 811 B
import React, { Component } from 'react'; export default class TagOutlineIcon 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-tag-outline-icon ${this.props.className}`}><path d="M5.499 6.999a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zm15.91 4.58c.365.363.59.865.59 1.42 0 .552-.223 1.05-.585 1.414l-7 7a1.999 1.999 0 0 1-2.83 0l-8.997-8.998a1.994 1.994 0 0 1-.588-1.416v-7a2 2 0 0 1 2-2h7c.553 0 1.053.223 1.415.585l8.996 8.996zM13 20l7-7-8.5-8.5-7 7L13 20z"/></svg> ) } }