NeahFront5/components/ui/logo.tsx
2025-04-10 11:30:00 +02:00

13 lines
217 B
TypeScript

export function Logo() {
return (
// Your SVG code here
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="currentColor"
>
{/* SVG paths go here */}
</svg>
);
}