react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 745 B
JSX
import React, { Component } from 'react';
export default class EmailOpenOutlineIcon 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-email-open-outline-icon ${this.props.className}`}><path d="M12 15.358L4 10.36V18h16v-7.64l-8 4.998zM4 8.001L12 13l8-4.999V8l-8-4.999L4 8v.001zM22 8v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8c0-.728.389-1.364.97-1.714L12 .643l9.03 5.643c.581.35.97.986.97 1.714z"/></svg>
)
}
}