@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 1.28 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconWindowToPrompterFilled = (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: "M2 4C2 2.89543 2.89543 2 4 2H16C17.1046 2 18 2.89543 18 4V5.5H2V4Z" }), _jsx("path", { d: "M2 7H18V9.75C18 10.1642 17.6642 10.5 17.25 10.5H13.8682C11.9302 10.5 10.4229 12.1853 10.6383 14.1112L10.6445 14.1666C10.6942 14.6111 10.3464 15 9.89917 15H4C2.89543 15 2 14.1046 2 13V7Z" }), _jsx("path", { d: "M12 21.25C12 20.8358 12.3358 20.5 12.75 20.5H21.25C21.6642 20.5 22 20.8358 22 21.25C22 21.6642 21.6642 22 21.25 22H12.75C12.3358 22 12 21.6642 12 21.25Z" }), _jsx("path", { d: "M12.1423 13.9619C12.015 12.9191 12.8288 12 13.8794 12H20.1205C21.1711 12 21.9849 12.9191 21.8577 13.9619L21.4306 17.4619C21.3235 18.34 20.578 19 19.6935 19H14.3064C13.4219 19 12.6764 18.34 12.5693 17.4619L12.1423 13.9619Z" })] }));
};
IconWindowToPrompterFilled.iconName = "window-to-prompter--filled";
export default IconWindowToPrompterFilled;