import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M773.44 64c20.048 0 36.472 16.344 36.472 36.184v93.648h60.952c20.16 0 36.48 16.232 36.48 36.4l1.704 660.352a68.88 68.88 0 0 1-69.096 68.64h-649.12a68.888 68.888 0 0 1-69.12-68.656L120 132.88C120 94.912 150.888 64 188.656 64H773.44z m60.944 202.776h-641.44l1.72 591.392c0 14.776 11.944 27.32 26.656 28.136l1.528 0.048h585.072c14.8 0 27.32-11.96 28.136-26.656l0.048-1.528-1.72-591.392zM515.976 551.056c19.688 0 35.6 16.056 35.6 35.896 0 19.2-15.008 34.88-33.888 35.776l-1.68 0.04v-8h-0.032v8H318.904a35.744 35.744 0 0 1-35.576-35.816c0-19.84 15.904-35.896 35.6-35.896h197.04z m155.496-129.896c18.544 0 33.48 16.136 33.48 35.888 0 19.696-14.88 35.808-33.456 35.888H316.72c-18.504 0-33.4-16.176-33.4-35.888 0-19.728 14.912-35.888 33.48-35.888h354.664z m65.488-284.208H221.232a28.4 28.4 0 0 0-28.208 28.48c0 15.24 11.776 27.616 26.64 28.424l1.544 0.048H736.96v-56.96z"></path></svg>
  );
}