UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.69 kB
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoOpenai = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("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("path", { d: "M9.618 9.286v-1.9c0-.16.06-.28.2-.36l3.82-2.2c.52-.3 1.14-.44 1.78-.44 2.4 0 3.92 1.86 3.92 3.84 0 .14 0 .3-.02.46l-3.96-2.32a.67.67 0 0 0-.72 0zm8.92 7.4v-4.54c0-.28-.12-.48-.36-.62l-5.02-2.92 1.64-.94c.14-.08.26-.08.4 0l3.82 2.2c1.1.64 1.84 2 1.84 3.32 0 1.52-.9 2.92-2.32 3.5m-10.1-4-1.64-.96c-.14-.08-.2-.2-.2-.36v-4.4c0-2.14 1.64-3.76 3.86-3.76.84 0 1.62.28 2.28.78l-3.94 2.28c-.24.14-.36.34-.36.62zm3.53 2.04-2.35-1.32v-2.8l2.35-1.32 2.35 1.32v2.8zm1.51 6.08c-.84 0-1.62-.28-2.28-.78l3.94-2.28c.24-.14.36-.34.36-.62v-5.8l1.66.96c.14.08.2.2.2.36v4.4c0 2.14-1.66 3.76-3.88 3.76m-4.74-4.46-3.82-2.2c-1.1-.64-1.84-2-1.84-3.32 0-1.54.92-2.92 2.34-3.5v4.56c0 .28.12.48.36.62l5 2.9-1.64.94c-.14.08-.26.08-.4 0m-.22 3.28c-2.26 0-3.92-1.7-3.92-3.8 0-.16.02-.32.04-.48l3.94 2.28q.36.21.72 0l5.02-2.9v1.9c0 .16-.06.28-.2.36l-3.82 2.2c-.52.3-1.14.44-1.78.44m4.96 2.38a5 5 0 0 0 4.9-4c2.24-.58 3.68-2.68 3.68-4.82 0-1.4-.6-2.76-1.68-3.74.1-.42.16-.84.16-1.26 0-2.86-2.32-5-5-5-.54 0-1.06.08-1.58.26-.9-.88-2.14-1.44-3.5-1.44a5 5 0 0 0-4.9 4c-2.24.58-3.68 2.68-3.68 4.82 0 1.4.6 2.76 1.68 3.74-.1.42-.16.84-.16 1.26 0 2.86 2.32 5 5 5 .54 0 1.06-.08 1.58-.26.9.88 2.14 1.44 3.5 1.44" }) })); }; IconLogoOpenai.iconName = "logo-openai"; export default IconLogoOpenai;