import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M120 874.904V157.096c0-24.8 13.76-45.096 31.552-45.096h8.896C177.44 112 192 132.296 192 157.096v717.808c0 24.8-13.76 45.096-31.552 45.096h-8.896c-17.8 0-31.552-20.296-31.552-45.096z"></path><path d="M597.976 124c62.04 0.08 87.48 1.784 107.072 8.88 39.496 9.456 72.152 26.88 105.376 55.728 38.496 34.904 63.68 79.464 81.12 139.256 14.672 52.36 23.12 113.928 24.344 176.064l0.112 7.688v8.768c0 64.8-8.4 127.984-24.464 183.784-16.968 58.936-42.48 103.64-81.216 139.32-35.088 29.656-67.456 47.28-104.848 55.504-19.536 7.048-45.024 8.872-102.952 8.992l-4.544 0.008-9.328 0.008H397.088c-31.04 0-56.056-27.696-57.056-62.544l-0.032-2.104V188.648c0-34.896 24.224-63.448 55.224-64.616l1.864-0.032h200.88z m11.728 72H449.88c-20.808 0-37.872 20.64-37.872 46.64v546.72c0 26 17.064 46.64 37.872 46.64h159.832c46.656-0.08 66.4-1.52 81.424-7.216 28.616-6.696 53.12-20.824 79.84-44.736 29.44-28.712 48.944-64.88 62-112.896 12.496-45.92 19.032-98.032 19.032-151.488v-7.28c-0.504-53.384-7.152-106.64-19.024-151.52-13.424-48.704-32.664-84.752-61.92-112.832-25.312-23.272-50.032-37.232-80.448-44.976-14.512-5.536-34.248-6.976-80.904-7.048z"></path></svg>
  );
}