react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 760 B
JSX
import React, { Component } from 'react';
export default class EraserVariantIcon 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-eraser-variant-icon ${this.props.className}`}><path fillRule="evenodd" d="M15.141 2.998c-.512 0-1.02.2-1.411.59L2.587 14.727a2.005 2.005 0 0 0 0 2.833L5.03 20h7.656l8.726-8.73a1.99 1.99 0 0 0 0-2.827l-4.854-4.854a2.004 2.004 0 0 0-1.416-.591zm1.862 15L15 20h7.003v-2.003"/></svg>
)
}
}