import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M511.888 104C256.12 104 48 273.072 48 480.856c0 110.96 58.72 214.104 161.976 285.776l-30.112 125.312a25.28 25.28 0 0 0 7.152 27.8 25.472 25.472 0 0 0 17.072 6.432c3.92 0 7.84-0.92 11.536-2.76l148.24-85.8a557.656 557.656 0 0 0 148.248 19.984C767.88 857.6 976 688.528 976 480.744 975.768 272.96 767.76 104 511.888 104zM345.12 502.88a61.072 61.072 0 0 1-61.048-61.056 61.072 61.072 0 0 1 61.048-61.056 61.072 61.072 0 0 1 61.056 61.056c-0.12 33.76-27.408 61.056-61.056 61.056z m350.04 0a61.072 61.072 0 0 1-61.056-61.056 61.072 61.072 0 0 1 61.056-61.056 61.072 61.072 0 0 1 61.048 61.056c-0.112 33.76-27.408 61.056-61.048 61.056z"></path></svg>
  );
}