@loomhq/lens 10.35.1 → 10.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -91,6 +91,7 @@ export { default as SvgLinkOff } from "./link-off.js";
|
|
|
91
91
|
export { default as SvgList } from "./list.js";
|
|
92
92
|
export { default as SvgLocation } from "./location.js";
|
|
93
93
|
export { default as SvgLock } from "./lock.js";
|
|
94
|
+
export { default as SvgLockFill } from "./lock-fill.js";
|
|
94
95
|
export { default as SvgLogOut } from "./log-out.js";
|
|
95
96
|
export { default as SvgMaximize } from "./maximize.js";
|
|
96
97
|
export { default as SvgMenu } from "./menu.js";
|
|
@@ -91,6 +91,7 @@ export { default as SvgLinkOff } from './link-off.js';
|
|
|
91
91
|
export { default as SvgList } from './list.js';
|
|
92
92
|
export { default as SvgLocation } from './location.js';
|
|
93
93
|
export { default as SvgLock } from './lock.js';
|
|
94
|
+
export { default as SvgLockFill } from './lock-fill.js';
|
|
94
95
|
export { default as SvgLogOut } from './log-out.js';
|
|
95
96
|
export { default as SvgMaximize } from './maximize.js';
|
|
96
97
|
export { default as SvgMenu } from './menu.js';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
function SvgLockFill(props) {
|
|
3
|
+
return (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
|
|
4
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.6 12.2001C6.26863 12.2001 6 12.4688 6 12.8001V18.4001C6 18.7315 6.26863 19.0001 6.6 19.0001H17.8C18.1314 19.0001 18.4 18.7315 18.4 18.4001V12.8001C18.4 12.4688 18.1314 12.2001 17.8 12.2001H6.6ZM4 12.8001C4 11.3642 5.16406 10.2001 6.6 10.2001H17.8C19.2359 10.2001 20.4 11.3642 20.4 12.8001V18.4001C20.4 19.8361 19.2359 21.0001 17.8 21.0001H6.6C5.16406 21.0001 4 19.8361 4 18.4001V12.8001Z", fill: "currentColor" }),
|
|
5
|
+
React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.2001 5C11.4045 5 10.6414 5.31607 10.0788 5.87868C9.51621 6.44129 9.20014 7.20435 9.20014 8V11.2C9.20014 11.7523 8.75242 12.2 8.20014 12.2C7.64785 12.2 7.20014 11.7523 7.20014 11.2V8C7.20014 6.67392 7.72692 5.40215 8.6646 4.46447C9.60229 3.52678 10.8741 3 12.2001 3C13.5262 3 14.798 3.52678 15.7357 4.46447C16.6734 5.40215 17.2001 6.67392 17.2001 8V11.2C17.2001 11.7523 16.7524 12.2 16.2001 12.2C15.6479 12.2 15.2001 11.7523 15.2001 11.2V8C15.2001 7.20435 14.8841 6.44129 14.3215 5.87868C13.7588 5.31607 12.9958 5 12.2001 5Z", fill: "currentColor" }),
|
|
6
|
+
React.createElement("path", { d: "M6 12H19V19H6V12Z", fill: "currentColor" })));
|
|
7
|
+
}
|
|
8
|
+
export default SvgLockFill;
|