19 lines
612 B
React
19 lines
612 B
React
export default function Logo({ size = 32 }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 48 48"
|
|
width={size}
|
|
height={size}
|
|
style={{ display: 'block', flexShrink: 0 }}
|
|
aria-hidden="true"
|
|
>
|
|
<rect width="48" height="48" rx="10" fill="#1e3a8a" />
|
|
<rect x="7" y="31" width="9" height="11" rx="2" fill="#93c5fd" />
|
|
<rect x="20" y="21" width="9" height="21" rx="2" fill="#60a5fa" />
|
|
<rect x="33" y="11" width="9" height="31" rx="2" fill="white" />
|
|
<polygon points="37.5,4 44,12 31,12" fill="#4ade80" />
|
|
</svg>
|
|
);
|
|
}
|