@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 970 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCameraOffFilled = (props) => {
const size = sizeMap[props?.size ?? "m"];
const label = props?.label ?? "Icon";
return (_jsxs("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", { fillRule: "evenodd", d: "M2.22 21.78a.75.75 0 0 1 0-1.06l18.5-18.5a.75.75 0 1 1 1.06 1.06L19.06 6H20a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4.06l-.78.78a.75.75 0 0 1-1.06 0m6.275-5.214a5 5 0 0 0 7.07-7.07l-1.06 1.06a3.5 3.5 0 0 1-4.95 4.95z", clipRule: "evenodd" }), _jsx("path", { d: "M7.058 13.763 2 18.821V8a2 2 0 0 1 2-2h3l1.703-2.555A1 1 0 0 1 9.535 3h4.93a1 1 0 0 1 .832.445l.831 1.248-3.365 3.365a5 5 0 0 0-5.705 5.705" })] }));
};
IconCameraOffFilled.iconName = "camera-off--filled";
export default IconCameraOffFilled;