Files
client_panel/app/components/Icons/Menu/index.tsx
2024-08-25 18:09:56 +00:00

23 lines
435 B
TypeScript

import React from "react";
const index = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth={1.5}
stroke="currentColor"
className="size-6"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M3.75 5.25h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5m-16.5 4.5h16.5"
/>
</svg>
);
};
export default index;