Skip to content

Instantly share code, notes, and snippets.

@tidusia
Created January 14, 2022 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tidusia/9caf21767d321aec3b39ec3ae32dbbc4 to your computer and use it in GitHub Desktop.
Save tidusia/9caf21767d321aec3b39ec3ae32dbbc4 to your computer and use it in GitHub Desktop.
import React, { FunctionComponent } from "react";
const Menu: FunctionComponent<React.SVGProps<SVGSVGElement>> = (props) => (
<svg stroke="currentColor" fill="none" viewBox="0 0 24 24" {...props}>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M4 6h16M4 12h16M4 18h16"
/>
</svg>
);
export default Menu;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment