UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.32 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoSteamDeckColor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M15.9102 12C15.9102 8.4597 13.0403 5.58975 9.5 5.58975V2C15.0229 2 19.5 6.47714 19.5 12C19.5 17.5229 15.0229 22 9.5 22V18.4102C13.0403 18.4102 15.9102 15.5403 15.9102 12Z", fill: "black" }), _jsx("path", { d: "M9.5 17.0107C12.2614 17.0107 14.5 14.7722 14.5 12.0107C14.5 9.24932 12.2614 7.01074 9.5 7.01074C6.73858 7.01074 4.5 9.24932 4.5 12.0107C4.5 14.7722 6.73858 17.0107 9.5 17.0107Z", fill: "url(#paint0_linear_8575_597)" }), _jsx("defs", { children: _jsxs("linearGradient", { id: "paint0_linear_8575_597", x1: 0.652724, y1: 8.85727, x2: 12.397, y2: 14.5269, gradientUnits: "userSpaceOnUse", children: [_jsx("stop", { offset: 0.106991, stopColor: "#C957E6" }), _jsx("stop", { offset: 1, stopColor: "#1A9FFF" })] }) })] })); }; IconLogoSteamDeckColor.iconName = "logo-steam-deck--color"; export default IconLogoSteamDeckColor;