initial commit
This commit is contained in:
19
components/Logo.tsx
Normal file
19
components/Logo.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
// 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user