UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 715 B
import React, { Component } from 'react'; export default class DecimalDecreaseIcon 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-decimal-decrease-icon ${this.props.className}`}><path d="M12 17l3 3v-2h6v-2h-6v-2l-3 3zM9 5a3 3 0 0 1 3 3v3a3 3 0 0 1-6 0V8a3 3 0 0 1 3-3zm0 2a1 1 0 0 0-1 1v3a1 1 0 1 0 2 0V8a1 1 0 0 0-1-1zm-5 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2z"/></svg> ) } }