import * as React from 'react';

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

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

  return (
    
<svg {...props} style={styles} viewBox="0 0 1024 1024">
  <defs>
    
  </defs>
  <path d="M512 128c-212.08 0-384 171.92-384 384s171.92 384 384 384 384-171.92 384-384-171.92-384-384-384z m0-72c251.84 0 456 204.16 456 456s-204.16 456-456 456S56 763.84 56 512 260.16 56 512 56z"></path>
  <path d="M344 320h67.76v254.288c0 35.424 8.104 61.144 24.896 78.28 16.216 16.576 42.856 25.144 79.344 25.144 35.904 0 62.544-8.568 79.344-25.144 16.208-17.136 24.896-42.856 24.896-78.28V320H688v253.144c0 53.144-15.056 93.712-45.168 121.712C612.712 722.288 570.432 736 516 736c-55.016 0-97.296-13.712-126.248-40.568C359.056 666.856 344 626.288 344 573.144V320z"></path>
</svg>

  );
}