UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 1.7 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconSecurityCamera = (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", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 12C13.6569 12 15 13.3431 15 15C15 16.6569 13.6569 18 12 18C10.3431 18 9 16.6569 9 15C9 13.3431 10.3431 12 12 12ZM12 13.5C11.1716 13.5 10.5 14.1716 10.5 15C10.5 15.8284 11.1716 16.5 12 16.5C12.8284 16.5 13.5 15.8284 13.5 15C13.5 14.1716 12.8284 13.5 12 13.5Z" }), _jsx("path", { d: "M16 10C16.5523 10 17 10.4477 17 11C17 11.5523 16.5523 12 16 12C15.4477 12 15 11.5523 15 11C15 10.4477 15.4477 10 16 10Z" }), _jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M19 3C20.1046 3 21 3.89543 21 5V7C21 7.73981 20.5972 8.38365 20 8.72949V13C20 15.1217 19.1575 17.1569 17.6572 18.6572C16.1569 20.1575 14.1217 21 12 21C9.87827 21 7.84306 20.1575 6.34277 18.6572C4.84248 17.1569 4 15.1217 4 13V8.73145C3.45817 8.41791 3.07702 7.85783 3.01074 7.2041L3 7V5C3 3.89543 3.89543 3 5 3H19ZM5.5 13C5.5 14.7239 6.18433 16.3777 7.40332 17.5967C8.62231 18.8157 10.2761 19.5 12 19.5C13.7239 19.5 15.3777 18.8157 16.5967 17.5967C17.8157 16.3777 18.5 14.7239 18.5 13V9H5.5V13ZM5 4.5C4.72386 4.5 4.5 4.72386 4.5 5V7C4.5 7.27614 4.72386 7.5 5 7.5H19C19.2761 7.5 19.5 7.27614 19.5 7V5C19.5 4.72386 19.2761 4.5 19 4.5H5Z" })] })); }; IconSecurityCamera.iconName = "security-camera"; export default IconSecurityCamera;