import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M751.84 328.88L611.472 83.04l-166.2 41.144 188.536 322.152z"></path><path d="M195.024 212.424l-48.48 158.272h369.88l-47.824-158.272z"></path><path d="M231.584 397.92L96 636.48 205.248 754.48l184.208-319.096z"></path><path d="M385.184 576.192L273.16 695.888l136.896 238.896 160.296-37.856z"></path><path d="M505.288 651.128l45.712 157.816h275.848l48.12-157.816z"></path><path d="M814.544 263.76l-183.52 321.968L786.96 623.76 928 385.496z"></path></svg>
  );
}