import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M492.56 57.696a36 36 0 0 1 37.24-0.984l1.64 0.984 404.32 259.376a44 44 0 0 1 20.2 35.088l0.04 1.952v572.68a44 44 0 0 1-42.232 43.968l-1.768 0.032H112a44 44 0 0 1-43.968-42.232l-0.032-1.76V354.104a44 44 0 0 1 18.624-35.952l1.616-1.088L492.56 57.696zM884 460.16l-350.296 264.72-1.504 1.08a36 36 0 0 1-40.4 0l-1.504-1.08L140 460.152v438.64h744v-438.64zM512 130.768l-372 238.64v0.504l336 253.904V367.384l-69.376 69.392a36 36 0 0 1-49.68 1.168l-1.232-1.168a36 36 0 0 1-1.168-49.68l1.168-1.232 130.64-130.64a36 36 0 0 1 49.68-1.168l1.232 1.168 130.64 130.64a36 36 0 0 1-49.68 52.08l-1.232-1.168-68.992-69v256.04l336-253.912v-0.496L512 130.768z"></path></svg>
  );
}