import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M512 64c247.424 0 448 200.576 448 448s-200.576 448-448 448S64 759.424 64 512 264.576 64 512 64z m108.752 220.08a134.92 134.92 0 0 0-69.832 18.72c-40.016 22.24-64.168 61.56-64.168 104.376v210.72c0 24.736-14.32 47.392-38.472 61.008a94.112 94.112 0 0 1-45.104 11.544c-46.104 0-83.568-32.648-83.568-72.544 0-12.096 3.08-23.76 9.744-34.32 9.744-16.12 27.136-28.752 49.216-35.304 2.528-0.976 4.632-0.976 5.664-0.976a25.12 25.12 0 0 0 25.584-25.184c0-14.04-11.2-25.16-25.608-25.16-6.096 0-12.304 0.976-21.504 3.504-32.8 9.56-59.968 29.728-76.936 56.96-11.176 18.632-17.416 39.344-17.416 60.448 0 68 60.544 123.04 134.92 123.04 24.608 0 48.792-6.12 70.288-18.208 40.024-22.208 64.176-61.552 64.176-104.376V407.088c0-24.76 14.312-47.424 38.496-61.008a94.112 94.112 0 0 1 45.072-11.568c45.68 0 83.144 32.68 83.144 72.576 0 12.056-3.104 23.76-9.744 34.296-9.752 16.688-27.168 29.232-49.216 35.328-2.56 0.968-4.664 0.968-5.664 0.968-14.32 0-25.584 11-25.584 25.16a25.12 25.12 0 0 0 25.584 25.184 76.808 76.808 0 0 0 21.496-3.496c32.832-9.6 59.968-29.76 76.936-56.984 11.2-18.64 17.416-39.32 17.416-60.456 0-68.008-60.512-123.016-134.92-123.016z"></path></svg>
  );
}