UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 691 B
import React, { Component } from 'react'; export default class MessageOutlineIcon 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-message-outline-icon ${this.props.className}`}><path d="M20 2.002H3.999A2.001 2.001 0 0 0 2.002 4v18.003l4-4.005H20a2.006 2.006 0 0 0 2.003-1.996V4A2.006 2.006 0 0 0 20 2.002zm0 14H6.001L4 17.996V4H20"/></svg> ) } }