Created
January 14, 2022 09:11
-
-
Save tidusia/9caf21767d321aec3b39ec3ae32dbbc4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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