UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 674 B
import React, { Component } from 'react'; export default class ReadIcon 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-read-icon ${this.props.className}`}><path d="M21.59 11.59L23 13l-9.49 9.5-5.09-5.09L9.83 16l3.67 3.68 8.09-8.09zM4 16V3h5a4 4 0 0 1 1.851 7.547L14 16h-2l-2.887-5H6v5H4zm2-7h3a2 2 0 1 0 0-4H6v4z"/></svg> ) } }