UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 738 B
import React, { Component } from 'react'; export default class EraserIcon 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-icon ${this.props.className}`}><path d="M16.243 3.558l4.95 4.95a2 2 0 0 1 0 2.828L12 20.528a4 4 0 0 1-5.657 0l-3.535-3.535a2 2 0 0 1 0-2.829L13.414 3.558a2 2 0 0 1 2.829 0zM4.222 15.578l3.535 3.536a2 2 0 0 0 2.829 0l3.535-3.536-4.95-4.95-4.95 4.95z"/></svg> ) } }