Files
tfm_ainventory/frontend/components/icons/GeminiLogo.tsx
2026-04-26 19:12:15 +03:00

24 lines
901 B
TypeScript

import React from 'react';
interface GeminiLogoProps {
size?: number;
className?: string;
}
export function GeminiLogo({ size = 16, className = '' }: GeminiLogoProps) {
return (
<svg
width={size}
height={size}
fill="currentColor"
fillRule="evenodd"
viewBox="0 0 24 24"
className={className}
xmlns="http://www.w3.org/2000/svg"
>
<title>Gemini</title>
<path d="M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z" />
</svg>
);
}