Files
stats/packages/sdks/_info/icons/kotlin-icon.tsx
2024-11-13 21:15:46 +01:00

27 lines
659 B
TypeScript

import type { IconProps } from './types';
export function KotlinIcon({ className }: IconProps) {
return (
<svg
width="512"
height="512"
viewBox="0 0 512 512"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<g clipPath="url(#clip0_367_180)">
<path
d="M27.744 512L268.832 266.672L512 512H27.744ZM0 0H256L0 266.672V0ZM285.84 0L0 298.672V512L512 0H285.84Z"
fill="currentColor"
/>
</g>
<defs>
<clipPath id="clip0_367_180">
<rect width="512" height="512" fill="white" />
</clipPath>
</defs>
</svg>
);
}