1
0
Fork 0
freesewing/sites/shared/components/icons/menu.js
2022-06-17 12:02:09 +02:00

8 lines
320 B
JavaScript

/* Sourced from heroicons.com - Thanks guys! */
const Menu = () => (
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 6h16M4 12h16M4 18h16" />
</svg>
)
export default Menu