@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 890 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconWebcam = (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: "M12 15a4 4 0 1 0 0-8 4 4 0 0 0 0 8m0-1.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5", clipRule: "evenodd" }), _jsx("path", { fillRule: "evenodd", d: "M15.6 19.251a9 9 0 1 0-7.2 0 9 9 0 0 0-2.764 1.885.75.75 0 0 0 1.06 1.06 7.5 7.5 0 0 1 10.607 0 .75.75 0 0 0 1.061-1.06 9 9 0 0 0-2.764-1.885M12 18.5a7.5 7.5 0 1 0 0-15 7.5 7.5 0 0 0 0 15", clipRule: "evenodd" })] }));
};
IconWebcam.iconName = "webcam";
export default IconWebcam;