@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.13 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconSpeakerSwitchTo = (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: "M6 2C4.89543 2 4 2.89543 4 4V20C4 21.1046 4.89543 22 6 22H12.8096C12.3832 21.5557 12.0194 21.051 11.7322 20.5H6C5.72386 20.5 5.5 20.2761 5.5 20V4C5.5 3.72386 5.72386 3.5 6 3.5H18C18.2761 3.5 18.5 3.72386 18.5 4V11.0764C19.0232 11.1572 19.5258 11.3004 20 11.4982V4C20 2.89543 19.1046 2 18 2H6Z" }), _jsx("path", { d: "M12 11C12.8955 11 13.7223 11.2943 14.389 11.7915C13.9105 12.0528 13.4684 12.3725 13.0725 12.7411C12.7475 12.5865 12.3838 12.5 12 12.5C10.6193 12.5 9.5 13.6193 9.5 15C9.5 16.0264 10.1185 16.9083 11.0032 17.2934C11.0011 17.362 11 17.4309 11 17.5C11 17.9843 11.053 18.4562 11.1534 18.9102C9.35088 18.5218 8 16.9187 8 15C8 12.7909 9.79086 11 12 11Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.5 7.5C14.5 8.88071 13.3807 10 12 10C10.6193 10 9.5 8.88071 9.5 7.5C9.5 6.11929 10.6193 5 12 5C13.3807 5 14.5 6.11929 14.5 7.5ZM13 7.5C13 8.05228 12.5523 8.5 12 8.5C11.4477 8.5 11 8.05228 11 7.5C11 6.94772 11.4477 6.5 12 6.5C12.5523 6.5 13 6.94772 13 7.5Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.5 23C20.5376 23 23 20.5376 23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23ZM18.8536 19.8536L20.8536 17.8536C21.0488 17.6583 21.0488 17.3417 20.8536 17.1464L18.8536 15.1464C18.6583 14.9512 18.3417 14.9512 18.1464 15.1464C17.9512 15.3417 17.9512 15.6583 18.1464 15.8536L19.2929 17H14.5C14.2239 17 14 17.2239 14 17.5C14 17.7761 14.2239 18 14.5 18H19.2929L18.1464 19.1464C17.9512 19.3417 17.9512 19.6583 18.1464 19.8536C18.3417 20.0488 18.6583 20.0488 18.8536 19.8536Z" })] }));
};
IconSpeakerSwitchTo.iconName = "speaker-switch-to";
export default IconSpeakerSwitchTo;