import { cn } from "@/lib/utils";
export interface KimiLogoProps extends React.SVGProps<SVGSVGElement> {}
export function KimiLogo({ className, ...props }: KimiLogoProps) {
return (
<svg
version="1.0"
xmlns="http://www.w3.org/2000/svg"
width="1024.000000pt"
height="1024.000000pt"
viewBox="0 0 1024.000000 1024.000000"
preserveAspectRatio="xMidYMid meet"
className={cn("", className)}
{...props}
>
<title>Kimi</title>
<g
transform="translate(0.000000,1024.000000) scale(0.100000,-0.100000)"
fill="currentColor"
stroke="none"
>
<path d="M1595 10228 c-360 -40 -727 -206 -1000 -452 -330 -297 -541 -714 -585 -1161 -8 -78 -10 -1110 -8 -3570 4 -3236 5 -3465 21 -3545 62 -302 159 -531 324 -763 79 -111 288 -318 401 -397 241 -169 506 -277 792 -322 126 -19 7034 -19 7160 0 286 45 551 153 792 322 113 79 322 286 401 397 173 243 283 511 329 803 19 126 19 7034 0 7160 -46 292 -156 560 -329 803 -79 111 -287 317 -403 399 -112 80 -307 182 -440 231 -113 42 -288 82 -422 96 -123 14 -6915 13 -7033 -1z m1729 -2534 c14 -14 16 -120 16 -1015 l0 -999 633 0 632 0 470 1001 c258 551 475 1008 483 1015 11 12 94 14 484 12 422 -3 472 -5 481 -19 8 -13 -35 -116 -198 -470 -371 -810 -527 -1143 -562 -1198 -90 -141 -250 -266 -408 -321 -50 -17 -47 -18 305 -22 345 -5 358 -5 455 -31 121 -32 265 -100 357 -168 153 -114 288 -291 348 -458 68 -186 63 -99 67 -1375 3 -867 1 -1162 -8 -1172 -16 -19 -978 -21 -997 -2 -9 9 -12 334 -12 1400 0 763 -4 1388 -9 1388 -4 0 -16 -30 -26 -67 -35 -128 -89 -219 -189 -318 -72 -72 -108 -99 -176 -133 -164 -81 -87 -76 -1167 -80 l-963 -3 0 -1080 c0 -726 -3 -1087 -10 -1100 -10 -18 -26 -19 -498 -19 -366 0 -491 3 -500 12 -17 17 -17 5209 0 5226 9 9 133 12 494 12 425 0 484 -2 498 -16z" />
</g>
</svg>
);
}