import * as React from 'react';

const DefaultStyles = {
  width: '1em',
  height: '1em',
  verticalAlign: 'middle',
  fill: 'currentColor',
  overflow: 'hidden'
};

export default function DTEmail(props = {}) {
  const styles = Object.assign({}, DefaultStyles, props.style);

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M924.088 172.8c26.656 0 48.528 20.968 49.48 47.44l0.032 1.76v605.6c0 26.48-21.096 48.224-47.736 49.168l-1.776 0.032H116.72c-26.656 0-48.528-20.968-49.48-47.44l-0.032-1.76v-605.6c0-26.48 21.096-48.224 47.736-49.168l1.776-0.032H924.08zM617.376 526.664l-75.032 62.16a34.44 34.44 0 0 1-42.504 1.088l-1.384-1.096-74.496-61.696-246.984 281.552h687.792L617.376 526.664zM135.76 288.424v463.56l235.544-268.48-235.544-195.08z m769.296-0.008L670.056 483.04l234.992 267.872V288.416z m-49.728-47.488h-669.84L520.4 518.32l334.92-277.384z"></path></svg>
  );
}