Neah/components/ui/logo.tsx
2025-04-17 11:39:15 +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>
);
}