react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 760 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoMailRead extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path d="m25 15h-12.5v2.5h12.5v-2.5z m-7.5-5h-5v2.5h5v-2.5z m15-1.0724999999999998v-3.9275h-5.5l-7-5-7 5h-5.5v3.9275l-5 3.5725v25h35v-25l-5-3.5725z m-22.5-1.4275000000000002h20v9.5625l-10 8.25-10-8.25v-9.5625z m-5 10l9.845 7.484999999999999-9.845 7.515000000000001v-15z m2.5 17.5l9.9225-8.056249999999999 2.5775000000000006 1.9624999999999986 2.5749999999999993-1.9574999999999996 9.925 8.05125h-25z m27.5-2.5l-9.85875-7.502499999999998 9.85875-7.497500000000002v15z"/></g>
</IconBase>
);
}
}