UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.02 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoGoogleGemini = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("g", { clipPath: "url(#prefix__a)", children: _jsx("path", { d: "M12 24q0-2.49-.96-4.68-.93-2.19-2.55-3.81a11.9 11.9 0 0 0-3.81-2.55Q2.49 12 0 12q2.49 0 4.68-.93 2.19-.96 3.81-2.58t2.55-3.81Q12 2.49 12 0q0 2.49.93 4.68.96 2.19 2.58 3.81a12.3 12.3 0 0 0 3.81 2.58Q21.51 12 24 12q-2.49 0-4.68.96-2.19.93-3.81 2.55a12.3 12.3 0 0 0-2.58 3.81Q12 21.51 12 24" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "prefix__a", children: _jsx("path", { d: "M0 0h24v24H0z" }) }) })] })); }; IconLogoGoogleGemini.iconName = "logo-google-gemini"; export default IconLogoGoogleGemini;