Skip to content
Snippets Groups Projects
Hamburger.tsx 271 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgHamburger(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M903 419H65v162h870V419h-32zm0 258H65v162h870V677h-32zm0-516H65v162h870V161h-32z" />
        </svg>
      );
    }
    
    export default SvgHamburger;