import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M504.656961 110.760291m-7.198434 31.179842l-172.76241 748.31621q-7.198434 31.179842-38.378275 23.981408l-7.794961-1.799608q-31.179842-7.198434-23.981408-38.378276l172.76241-748.31621q7.198434-31.179842 38.378275-23.981408l7.794961 1.799608q31.179842 7.198434 23.981408 38.378276Z"></path><path d="M776.656961 110.760291m-7.198434 31.179842l-172.76241 748.31621q-7.198434 31.179842-38.378275 23.981408l-7.794961-1.799608q-31.179842-7.198434-23.981408-38.378276l172.76241-748.31621q7.198434-31.179842 38.378275-23.981408l7.794961 1.799608q31.179842 7.198434 23.981408 38.378276Z"></path><path d="M120 288m32 0l768 0q32 0 32 32l0 8q0 32-32 32l-768 0q-32 0-32-32l0-8q0-32 32-32Z"></path><path d="M72 576m32 0l768 0q32 0 32 32l0 8q0 32-32 32l-768 0q-32 0-32-32l0-8q0-32 32-32Z"></path></svg>
  );
}