UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 829 B
import React, { Component } from 'react'; export default class ThumbDownOutlineIcon 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-thumb-down-outline-icon ${this.props.className}`}><path d="M19 14.998v-12h4v12h-4zm-4-12a2 2 0 0 1 2 2v10c0 .552-.225 1.052-.587 1.414l-6.586 6.586-1.06-1.055a1.491 1.491 0 0 1-.44-1.06l.033-.316.954-4.569H3a2 2 0 0 1-2-2v-2c0-.257.053-.502.141-.727l3.017-7.053A2 2 0 0 1 6 2.998h9zM15 5H5.974L3 12.006V14h8.785l-1.13 5.317L15 14.972V5z"/></svg> ) } }