20 lines
628 B
XML
20 lines
628 B
XML
// components/Logo.tsx
|
|
export function Logo({ size = 32 }: { size?: number }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={size}
|
|
height={size}
|
|
viewBox="0 0 150 150"
|
|
fill="none"
|
|
className="logo-svg" // Add a class for easier identification
|
|
>
|
|
<rect width="50" height="50" fill="#FF0000" />
|
|
<rect y="100" width="50" height="50" fill="#0000FF" />
|
|
<rect x="100" width="50" height="50" fill="#FF0000" />
|
|
<rect x="100" y="100" width="50" height="50" fill="#0000FF" />
|
|
<rect x="50" y="50" width="50" height="50" fill="#008000" />
|
|
</svg>
|
|
)
|
|
}
|