16 lines
418 B
TypeScript
16 lines
418 B
TypeScript
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 };
|