react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 933 B
JSX
import React, { Component } from 'react';
export default class ThumbsUpDownIcon 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-thumbs-up-down-icon ${this.props.className}`}><path d="M22.5 10.5h-6.75c-.62 0-1.15.38-1.38.91l-2.26 5.29c-.07.17-.11.36-.11.55v1.25c0 .55.45 1 1 1h5.18l-.66 3.18-.02.24c0 .31.13.59.33.8l.79.78 4.94-4.94c.27-.27.44-.65.44-1.06V12c0-.83-.67-1.5-1.5-1.5zM12 6.5c0-.55-.45-1-1-1H5.82l.66-3.18.02-.23c0-.31-.13-.59-.33-.8L5.38.5.44 5.44C.17 5.71 0 6.09 0 6.5V13c0 .83.67 1.5 1.5 1.5h6.75c.62 0 1.15-.38 1.38-.91l2.26-5.29c.07-.17.11-.36.11-.55V6.5z"/></svg>
)
}
}