Files
2025-10-29 14:59:05 +08:00

32 lines
1.1 KiB
TypeScript

export default function LogoIcon({
className,
...props
}: {
className?: string;
}) {
return (
<svg
viewBox="0 0 1024 1024"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
className={className}
{...props}
>
<circle cx="512" cy="512" r="512" className="fill-black" />
<g transform="translate(512, 512) scale(0.7) translate(-512, -512)">
<path
d="M655.36 89.813333L216.533333 309.12c-52.053333 26.026667-63.36 95.573333-22.186666 136.746667L413.866667 665.173333c41.173333 41.173333 110.72 29.866667 136.746666-22.186666L769.92 204.16c36.693333-73.386667-41.173333-151.04-114.56-114.346667z"
fill="#FFFFFF"
/>
<path
d="M368.64 934.186667l438.826667-219.306667c52.053333-26.026667 63.36-95.573333 22.186666-136.746667L610.133333 358.826667c-41.173333-41.173333-110.72-29.866667-136.746666 22.186666L254.08 819.84c-36.693333 73.386667 41.173333 151.04 114.56 114.346667z"
fill="#cdeeff"
/>
</g>
</svg>
);
}