@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 2.4 kB
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconCameraSensor = (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: "M15.7197 7.21973C16.0126 6.92683 16.4874 6.92683 16.7803 7.21973C17.0732 7.51262 17.0732 7.98738 16.7803 8.28027L8.28027 16.7803C7.98738 17.0732 7.51262 17.0732 7.21973 16.7803C6.92683 16.4874 6.92683 16.0126 7.21973 15.7197L15.7197 7.21973Z" }), _jsx("path", { d: "M16.7197 12.2197C17.0126 11.9268 17.4874 11.9268 17.7803 12.2197C18.0732 12.5126 18.0732 12.9874 17.7803 13.2803L14.2803 16.7803C13.9874 17.0732 13.5126 17.0732 13.2197 16.7803C12.9268 16.4874 12.9268 16.0126 13.2197 15.7197L16.7197 12.2197Z" }), _jsx("path", { d: "M9.71973 7.21973C10.0126 6.92683 10.4874 6.92683 10.7803 7.21973C11.0732 7.51262 11.0732 7.98738 10.7803 8.28027L7.28027 11.7803C6.98738 12.0732 6.51262 12.0732 6.21973 11.7803C5.92683 11.4874 5.92683 11.0126 6.21973 10.7197L9.71973 7.21973Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M11.25 2C11.6642 2 12 2.33579 12 2.75V4H19C20.1046 4 21 4.89543 21 6V7H22.25C22.6642 7 23 7.33579 23 7.75C23 8.16421 22.6642 8.5 22.25 8.5H21V11.25H22.25C22.6642 11.25 23 11.5858 23 12C23 12.4142 22.6642 12.75 22.25 12.75H21V15.5H22.25C22.6642 15.5 23 15.8358 23 16.25C23 16.6642 22.6642 17 22.25 17H21V18C21 19.1046 20.1046 20 19 20H18V21.25C18 21.6642 17.6642 22 17.25 22C16.8358 22 16.5 21.6642 16.5 21.25V20H13.5V21.25C13.5 21.6642 13.1642 22 12.75 22C12.3358 22 12 21.6642 12 21.25V20H5C3.89543 20 3 19.1046 3 18V17H1.75C1.33579 17 1 16.6642 1 16.25C1 15.8358 1.33579 15.5 1.75 15.5H3V12.75H1.75C1.33579 12.75 1 12.4142 1 12C1 11.5858 1.33579 11.25 1.75 11.25H3V8.5H1.75C1.33579 8.5 1 8.16421 1 7.75C1 7.33579 1.33579 7 1.75 7H3V6C3 4.89543 3.89543 4 5 4H6V2.75C6 2.33579 6.33579 2 6.75 2C7.16421 2 7.5 2.33579 7.5 2.75V4H10.5V2.75C10.5 2.33579 10.8358 2 11.25 2ZM5 5.5C4.72386 5.5 4.5 5.72386 4.5 6V18C4.5 18.2761 4.72386 18.5 5 18.5H19C19.2761 18.5 19.5 18.2761 19.5 18V6C19.5 5.72386 19.2761 5.5 19 5.5H5Z" })] }));
};
IconCameraSensor.iconName = "camera-sensor";
export default IconCameraSensor;