react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 754 B
JSX
import React, { Component } from 'react';
export default class ThumbUpIcon 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-up-icon ${this.props.className}`}><path d="M23 9.998a2 2 0 0 0-2-2h-6.316l.954-4.569a1.492 1.492 0 0 0-.407-1.376L14.171.998 7.585 7.584A1.994 1.994 0 0 0 7 8.998v10a2 2 0 0 0 2 2h9a2 2 0 0 0 1.842-1.22l3.017-7.053c.088-.225.141-.47.141-.727v-2zm-22 11h4v-12H1v12z"/></svg>
)
}
}