UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 894 B
import React, { Component } from 'react'; export default class SaleIcon 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-sale-icon ${this.props.className}`}><path d="M18.65 2.847l.613 3.865 3.505 1.786-1.777 3.487 1.786 3.505-3.54 1.804-.61 3.859-3.886-.616-2.767 2.768-2.782-2.782-3.866.612-.615-3.885-3.487-1.777 1.786-3.505-1.777-3.487 3.511-1.79.606-3.827 3.866.612L11.998.695l2.767 2.767 3.885-.615zM9.5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm5 7a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-6.086 3L17 8.414 15.586 7 7 15.586 8.414 17z"/></svg> ) } }