@elgato/icons
Version:
Icons used throughout the Elgato ecosystem.
10 lines (9 loc) • 920 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { sizeMap } from "../../metadata/sizing.js";
const IconLockOpen = (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", { d: "M12.75 15.8a1.5 1.5 0 1 0-1.5 0v1.45a.75.75 0 0 0 1.5 0z" }), _jsx("path", { fillRule: "evenodd", d: "M10.756 2.997A3.25 3.25 0 0 1 15.25 6v3H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-1.25V6a4.75 4.75 0 0 0-8.864-2.375.75.75 0 1 0 1.3.75 3.25 3.25 0 0 1 1.57-1.378M6 10.5h12a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5H6a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5", clipRule: "evenodd" })] }));
};
IconLockOpen.iconName = "lock-open";
export default IconLockOpen;