@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
15 lines (14 loc) • 2.17 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconQuestionMark = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
switch (props?.size) {
case "l":
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: "M7 8.28v.006a.75.75 0 0 1-1.5-.07l.75.034-.75-.034v-.002l.001-.002v-.006l.001-.018a3 3 0 0 1 .025-.263 7.64 7.64 0 0 1 .903-2.792C7.317 3.553 9.031 2 12.175 2c2.15 0 3.742.922 4.785 2.147 1.023 1.203 1.523 2.703 1.523 3.92 0 1.398-.413 2.428-1.062 3.233-.626.776-1.445 1.305-2.156 1.75l-.137.086c-.688.43-1.255.785-1.682 1.246-.416.45-.696 1.005-.696 1.868a.75.75 0 0 1-1.5 0c0-1.262.437-2.175 1.095-2.887.57-.616 1.306-1.074 1.951-1.476l.173-.108c.722-.452 1.336-.864 1.785-1.42.425-.529.73-1.224.73-2.292 0-.85-.367-2.008-1.167-2.948-.78-.916-1.966-1.619-3.642-1.619-2.531 0-3.78 1.197-4.437 2.367A6.1 6.1 0 0 0 7 8.281M12 22a1 1 0 1 0 0-2 1 1 0 0 0 0 2" }) }));
default:
return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 16 16", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { d: "M5.056 5.497V5.5A.556.556 0 0 1 3.944 5.5H4.5h-.556v-.02a3 3 0 0 1 .009-.186 6 6 0 0 1 .055-.494 5.7 5.7 0 0 1 .441-1.503c.256-.554.65-1.132 1.257-1.572.613-.443 1.41-.72 2.424-.72 1.352 0 2.353.552 3.004 1.35.638.78.922 1.77.922 2.645 0 .976-.248 1.69-.656 2.244-.395.536-.913.88-1.35 1.16l-.083.054c-.423.271-.751.482-.998.77-.237.277-.413.647-.413 1.272a.556.556 0 0 1-1.112 0c0-.875.262-1.505.681-1.994.36-.42.824-.716 1.216-.966l.109-.07c.438-.282.795-.531 1.056-.886.248-.337.438-.81.438-1.584 0-.655-.216-1.386-.67-1.943-.442-.54-1.126-.941-2.144-.941-.8 0-1.365.214-1.773.51-.414.3-.7.706-.899 1.136-.198.432-.3.87-.352 1.207a5 5 0 0 0-.05.504zM8 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2" }) }));
}
};
IconQuestionMark.iconName = "question-mark";
export default IconQuestionMark;