@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 914 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLogoSteamDeck = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", xmlns: "http://www.w3.org/2000/svg", width: size, height: size, "aria-label": label, role: "img", ...props, children: [_jsx("path", { d: "M9.5 2C15.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 12C15.9102 8.4597 13.0403 5.58984 9.5 5.58984V2Z" }), _jsx("path", { d: "M9.5 7.01074C12.2614 7.01074 14.5 9.24932 14.5 12.0107C14.5 14.7722 12.2614 17.0107 9.5 17.0107C6.73858 17.0107 4.5 14.7722 4.5 12.0107C4.5 9.24932 6.73858 7.01074 9.5 7.01074Z" })] }));
};
IconLogoSteamDeck.iconName = "logo-steam-deck";
export default IconLogoSteamDeck;