import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M832 868a36 36 0 0 1 0 72H192a36 36 0 0 1 0-72h640z m32-784c50.808 0 92 41.192 92 92v528c0 50.808-41.192 92-92 92H160c-50.808 0-92-41.192-92-92V176c0-50.808 41.192-92 92-92h704z m0 72H160a20 20 0 0 0-20 20v528a20 20 0 0 0 20 20h704a20 20 0 0 0 20-20V176a20 20 0 0 0-20-20zM757.824 295.624a36 36 0 0 1 21.48 58.896L602.616 567.424a36 36 0 0 1-54.4 1.16L410.256 416.064 300.928 547.528v-0.008a36 36 0 0 1-55.36-46.032l135.864-163.36a36 36 0 0 1 54.376-1.136l137.936 152.48 150.16-180.928a36 36 0 0 1 33.92-12.92z"></path></svg>
  );
}