import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M213.336 64h597.328C893.144 64 960 130.856 960 213.336v597.328c0 82.48-66.856 149.336-149.336 149.336H213.336C130.856 960 64 893.144 64 810.664V213.336C64 130.856 130.856 64 213.336 64z"></path><path d="M411.512 526.688c-0.216-1.52-1.576-4.664-4.016-8.44a53.488 53.488 0 0 0-5.376-7.08c-11.664-12.32-19.528-29.576-24.56-51.776a248.384 248.384 0 0 1-5.256-36.56c-0.512-6.944-0.752-13.36-0.728-18.272v-5.448c0-51.712 21.256-89.92 60.208-111.136a133.504 133.504 0 0 1 39.4-13.84c6.272-1.248 12.64-1.96 19.04-2.136h5.928c5.304 0.04 11.984 0.76 19.28 2.12 13.76 2.512 27.056 7.184 39.4 13.84 38.96 21.24 60.2 59.44 60.2 110.816v5.816c0.024 4.88-0.216 11.296-0.72 18.256a248.8 248.8 0 0 1-5.272 36.528c-5.024 22.216-12.888 39.472-24.544 51.776-1.376 1.456-3.472 4.16-5.384 7.096-2.44 3.776-3.8 6.928-4.016 8.432 0.048 5.072 2.496 7.248 30.2 21.104C689.44 589.8 710.08 613.44 710.36 653.664l2.648 58.4c1.104 15.44-10.36 28.848-25.6 29.976-8.016 0.568-384.064 0.656-390.824-0.112-15.168-1.736-26.08-15.568-24.416-30.928l4.104-58.4c0.76-39.568 21.64-63.16 105.024-104.816 27.728-13.84 30.168-16.032 30.216-21.096z"></path><path d="M622.344 302.056c-1.224 0.032-2.448 0.088-3.672 0.176 21.2 21.976 32.472 52.416 32.472 89.84v5.816c0.016 4.888-0.216 11.296-0.728 18.256a248.8 248.8 0 0 1-5.264 36.528c-5.024 22.216-12.896 39.472-24.544 51.784-1.384 1.44-3.472 4.152-5.384 7.096-2.44 3.76-3.8 6.92-4.016 8.424 0.04 5.072 2.496 7.248 30.2 21.104 84.136 42.024 104.128 65.664 104.408 105.88l2.44 53.52c18.192-0.064 29.84-0.136 31.04-0.216 12.296-0.92 21.536-11.824 20.64-24.376l-2.128-63.488c-0.232-32.704-14.808-51.928-82.656-86.096-22.344-11.264-24.32-13.04-24.36-17.16 0.176-1.224 1.28-3.792 3.24-6.856 1.544-2.392 3.232-4.592 4.344-5.768 9.4-10 15.744-24.04 19.792-42.104 2.08-9.216 3.48-19.2 4.24-29.704 0.416-5.664 0.608-10.872 0.592-14.84v-4.728c0-41.784-17.136-72.84-48.552-90.112a107.072 107.072 0 0 0-31.776-11.256 91.256 91.256 0 0 0-15.544-1.72z"></path></svg>
  );
}