import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M661.216 88.032S601.76 64 511.952 64c-89.8 0-149.264 27.528-149.264 27.528l298.624 303.376-0.096-306.872z"></path><path d="M834.688 197.68c-66.512-62.856-130.808-85.256-130.808-85.256l-2.216 419.68 225.984-213.36c0 0.08-26.352-58.2-92.96-121.064z"></path><path d="M939.728 354.552L629.024 653.168h314.328S968 593.696 968 503.808c-0.096-89.784-28.272-149.256-28.272-149.256z"></path><path d="M709.424 919.504s61.64-24.448 128.064-86.28c66.424-61.824 90.16-121.48 90.16-121.48l-443.896-2.08 225.672 209.84z"></path><path d="M362.776 935.832s59.464 24.024 149.264 24.024c89.896 0 149.272-27.52 149.272-27.52L362.688 628.944l0.08 306.88z"></path><path d="M205.448 826.176c66.52 62.864 130.824 85.256 130.824 85.256l2.208-419.68-225.984 213.36c0.088-0.08 26.44 58.2 92.96 121.064z"></path><path d="M80.656 354.552S56 414 56 503.856c0 89.856 28.184 149.312 28.184 149.312L394.976 354.64h-314.32v-0.088z"></path><path d="M322.648 112.424s-61.64 24.456-128.064 86.28c-66.424 61.824-90.16 121.48-90.16 121.48l443.896 2.08-225.672-209.84z"></path></svg>
  );
}