react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 738 B
JSX
import React, { Component } from 'react';
export default class MessageTextIcon 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-text-icon ${this.props.className}`}><path d="M20 2.002H3.999A1.994 1.994 0 0 0 2.01 4l-.009 18.003 4-4.005H20a2.006 2.006 0 0 0 2.003-1.996V4A2.006 2.006 0 0 0 20 2.002zM6.001 9h11.996V11H6.001M14 14H6v-1.997H14m3.998-4.005H6.001V6.002h11.996"/></svg>
)
}
}