import * as React from 'react';

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

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

  return (
    <svg {...props} style={styles} viewBox="0 0 1024 1024"><defs></defs><path d="M896 76a52 52 0 0 1 52 52v768a52 52 0 0 1-52 52H128a52 52 0 0 1-52-52V128A52 52 0 0 1 128 76h768zM320 392H148v484H320V392z m556 0H392v484h484V392z m0-244h-728V320h728V148z"></path></svg>
  );
}