UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 759 B
import React, { Component } from 'react'; export default class NewspaperIcon 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-newspaper-icon ${this.props.className}`}><path d="M20 11H4V8h16m0 7h-7v-2h7m0 6h-7v-2h7m-9 2H4v-6h7m9.333-8.333L18.667 3 17 4.667 15.333 3l-1.666 1.667L12 3l-1.667 1.667L8.667 3 7 4.667 5.333 3 3.667 4.667 2 3v16a2 2 0 0 0 2 2h16c1.104 0 1.99-.896 1.99-2L22 3l-1.667 1.667z"/></svg> ) } }