feat: add Menu SVG component for improved iconography

This commit is contained in:
faisolavolut 2025-03-12 12:33:12 +07:00
parent 8a911a9115
commit 351b757fcb
1 changed files with 15 additions and 0 deletions

15
svg/Menu.tsx Normal file
View File

@ -0,0 +1,15 @@
import { SVGProps } from "react";
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<path
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M20 12H10m10-7H4m16 14H4"
color="currentColor"
/>
</svg>
);
export { SvgComponent as Menu };