NeahStable/components/ui/logo.tsx
2026-01-09 21:06:52 +01: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>
);
}