import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M510.976 210.285714c12.434286 0 22.893714 4.169143 29.184 12.434286L899.657143 582.509714a41.106286 41.106286 0 0 1-29.110857 70.802286c-12.507429 0-22.893714-4.169143-29.184-12.507429L552.667429 351.817143v612.205714c0 22.893714-18.797714 41.618286-41.691429 41.618286a41.764571 41.764571 0 0 1-41.691429-41.691429V351.963429L180.589714 640.731429c-6.217143 8.338286-16.676571 12.434286-29.184 12.434285A41.764571 41.764571 0 0 1 109.714286 611.620571c0-12.434286 4.169143-22.893714 12.434285-29.184l359.716572-359.570285c6.217143-8.338286 16.603429-12.507429 29.110857-12.507429zM891.465143 50.249143a41.106286 41.106286 0 0 1 1.901714 82.285714H132.608A41.179429 41.179429 0 0 1 130.56 50.322286h760.832z"></path></svg>
  );
}