UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 677 B
import React, { Component } from 'react'; export default class PencilIcon 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-pencil-icon ${this.props.className}`}><path d="M20.706 7.041a.999.999 0 0 0 0-1.414L18.37 3.291a.999.999 0 0 0-1.414 0l-1.832 1.832 3.75 3.75M3 17.248v3.75h3.75L17.814 9.933l-3.75-3.75L3 17.248z"/></svg> ) } }