import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M679.44 66.872h-326.4c-40.856 0-74.2 33.736-74.2 74.88v748.968c0 41.192 33.344 74.88 74.192 74.88h326.416c40.808 0 74.192-33.688 74.192-74.88V141.76c0-41.152-33.384-74.888-74.192-74.888z m-207.728 59.888h89.056a14.96 14.96 0 0 1 14.888 14.992c0 8.32-6.688 14.992-14.888 14.992H471.712a14.864 14.864 0 0 1-14.776-14.992c0-8.272 6.616-14.992 14.776-14.992z m44.488 808.864c-24.56 0-44.52-20.072-44.52-44.904 0-24.832 19.96-44.976 44.52-44.976 24.68 0 44.56 20.144 44.56 44.976s-19.88 44.904-44.56 44.904z m183.84-119.792h-368V216.64h368v599.2z"></path></svg>
  );
}