feat: add Menu SVG component for improved iconography
This commit is contained in:
parent
8a911a9115
commit
351b757fcb
|
|
@ -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 };
|
||||
Loading…
Reference in New Issue