import * as React from 'react';

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

export default function ReferenceStatus(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="M357.2 306.2h182.176c41.816 0 75.04 9.168 99.104 28.072 25.208 20.616 38.384 50.408 38.384 89.36 0 21.2-5.728 40.104-17.184 56.72-12.608 18.328-30.36 31.504-52.136 37.232 35.52 8.024 55.568 31.512 60.16 71.608l6.872 65.88c2.288 25.2 10.88 45.256 24.632 60.152h-72.76c-9.736-12.6-15.464-30.36-17.76-53.28l-5.152-50.408c-2.288-22.344-9.168-38.384-20.624-48.12-12.024-10.32-29.784-14.896-52.704-14.896H424.24v166.704H357.2V306.2z m67.032 57.28v127.76h105.976c26.352 0 46.4-5.736 60.16-16.616 12.6-11.464 18.896-27.504 18.896-48.128 0-22.336-6.296-38.376-18.904-48.12-12.6-10.312-32.648-14.888-60.152-14.888H424.24z"></path></svg>
  );
}