react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 855 B
JSX
import React, { Component } from 'react';
export default class ContactMailIcon 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-contact-mail-icon ${this.props.className}`}><path d="M21.001 7.997v-.994l-3.004 1.996L15 7.002v.995L17.997 10m4.006-7.002h-20A2.008 2.008 0 0 0 0 5v13.999C0 20.098.899 21 2.002 21h20A2 2 0 0 0 23.99 19L24 5a2.007 2.007 0 0 0-1.996-2.002zM7.997 6a3.002 3.002 0 1 1 0 0zM14 17.997H2.002v-.994c0-2.003 4-3.102 5.995-3.102C10 13.901 14 15 14 17.003m8.004-5h-8.004V6h8.004"/></svg>
)
}
}