import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M88.384 413.024l16.664-223.72c3.96-53.664 47.456-97.056 101.152-100.912l223.04-16.032a140.8 140.8 0 0 1 109.36 40.784l356.336 356.24c54.752 54.736 54.752 143.832 0 198.576l-210.96 210.904A139.48 139.48 0 0 1 584.672 920c-37.512 0-72.8-14.6-99.312-41.136L129.144 522.736a140.376 140.376 0 0 1-40.76-109.712z m87.352 63.136l356.2 356.128c29.088 29.08 76.376 29.08 105.464 0l210.952-210.904c29.08-29.072 29.08-76.36 0-105.432L491.984 159.696a74.36 74.36 0 0 0-58.04-21.624l-223.016 16.032c-21.328 1.52-38.608 18.752-40.184 40.08L154.08 417.904a74.48 74.48 0 0 0 21.656 58.248z"></path><path d="M452.936 267.12c46.752 46.776 46.752 122.904 0 169.72C430.024 459.68 399.72 472 368.28 472c-9.072 0-18.208-1.032-27.312-3.12a119.784 119.784 0 0 1-57.792-32.08l-0.032-0.032a119.688 119.688 0 0 1-32.336-59.12 119.52 119.52 0 0 1 32.368-110.552c46.784-46.776 122.976-46.824 169.76 0.016zM315.16 363.576a54.448 54.448 0 0 0 14.64 26.664 53.696 53.696 0 0 0 25.968 14.416 53.776 53.776 0 0 0 50.576-14.44c21.08-21.112 21.08-55.44 0-76.52a53.984 53.984 0 0 0-38.288-15.832 53.968 53.968 0 0 0-38.288 15.816 54.024 54.024 0 0 0-14.608 49.896z"></path></svg>
  );
}