@elementor/icons 1.6.0 → 1.7.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.
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SvgIconProps } from '@elementor/ui/SvgIcon';
3
+ declare const ClockIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps<"svg", {}>, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default ClockIcon;
@@ -0,0 +1,10 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const ClockIcon = React.forwardRef((props, ref) => {
5
+ return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
6
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z" })));
7
+ });
8
+
9
+ export { ClockIcon as default };
10
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/ClockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ClockIcon = React.forwardRef<SVGSVGElement, SvgIconProps>( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ClockIcon;\n"],"names":[],"mappings":";;;AAGM,MAAA,SAAS,GAAG,KAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AACjF,IAAA,QACC,KAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,+iBAA+iB,EAAG,CAAA,CACvlB,EACT;AACH,CAAC;;;;"}
@@ -0,0 +1,37 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var React = require('react');
6
+ var SvgIcon = require('@elementor/ui/SvgIcon');
7
+
8
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
9
+
10
+ function _interopNamespace(e) {
11
+ if (e && e.__esModule) return e;
12
+ var n = Object.create(null);
13
+ if (e) {
14
+ Object.keys(e).forEach(function (k) {
15
+ if (k !== 'default') {
16
+ var d = Object.getOwnPropertyDescriptor(e, k);
17
+ Object.defineProperty(n, k, d.get ? d : {
18
+ enumerable: true,
19
+ get: function () { return e[k]; }
20
+ });
21
+ }
22
+ });
23
+ }
24
+ n["default"] = e;
25
+ return Object.freeze(n);
26
+ }
27
+
28
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultLegacy(SvgIcon);
30
+
31
+ const ClockIcon = React__namespace.forwardRef((props, ref) => {
32
+ return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
33
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z" })));
34
+ });
35
+
36
+ exports["default"] = ClockIcon;
37
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/ClockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ClockIcon = React.forwardRef<SVGSVGElement, SvgIconProps>( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ClockIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGM,MAAA,SAAS,GAAGA,gBAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AACjF,IAAA,QACCA,gBAAA,CAAA,aAAA,CAACC,2BAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAAD,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,+iBAA+iB,EAAG,CAAA,CACvlB,EACT;AACH,CAAC;;;;"}
@@ -0,0 +1,7 @@
1
+ {
2
+ "private": true,
3
+ "sideEffects": false,
4
+ "main": "index.js",
5
+ "module": "index.esm.js",
6
+ "types": "index.d.ts"
7
+ }
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SvgIconProps } from '@elementor/ui/SvgIcon';
3
+ declare const LockIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps<"svg", {}>, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default LockIcon;
@@ -0,0 +1,10 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const LockIcon = React.forwardRef((props, ref) => {
5
+ return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
6
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z" })));
7
+ });
8
+
9
+ export { LockIcon as default };
10
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/LockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst LockIcon = React.forwardRef<SVGSVGElement, SvgIconProps>( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default LockIcon;\n"],"names":[],"mappings":";;;AAGM,MAAA,QAAQ,GAAG,KAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AAChF,IAAA,QACC,KAAA,CAAA,aAAA,CAAC,OAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,ijCAAijC,EAAG,CAAA,CACzlC,EACT;AACH,CAAC;;;;"}
@@ -0,0 +1,37 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var React = require('react');
6
+ var SvgIcon = require('@elementor/ui/SvgIcon');
7
+
8
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
9
+
10
+ function _interopNamespace(e) {
11
+ if (e && e.__esModule) return e;
12
+ var n = Object.create(null);
13
+ if (e) {
14
+ Object.keys(e).forEach(function (k) {
15
+ if (k !== 'default') {
16
+ var d = Object.getOwnPropertyDescriptor(e, k);
17
+ Object.defineProperty(n, k, d.get ? d : {
18
+ enumerable: true,
19
+ get: function () { return e[k]; }
20
+ });
21
+ }
22
+ });
23
+ }
24
+ n["default"] = e;
25
+ return Object.freeze(n);
26
+ }
27
+
28
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultLegacy(SvgIcon);
30
+
31
+ const LockIcon = React__namespace.forwardRef((props, ref) => {
32
+ return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
33
+ React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z" })));
34
+ });
35
+
36
+ exports["default"] = LockIcon;
37
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/LockIcon/index.tsx"],"sourcesContent":["import * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst LockIcon = React.forwardRef<SVGSVGElement, SvgIconProps>( ( props, ref ) => {\n\treturn (\n\t\t<SvgIcon viewBox=\"0 0 24 24\" { ...props } ref={ ref }>\n\t\t\t<path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default LockIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGM,MAAA,QAAQ,GAAGA,gBAAK,CAAC,UAAU,CAA+B,CAAE,KAAK,EAAE,GAAG,KAAK;AAChF,IAAA,QACCA,gBAAA,CAAA,aAAA,CAACC,2BAAO,EAAA,EAAC,OAAO,EAAC,WAAW,EAAA,GAAM,KAAK,EAAG,GAAG,EAAG,GAAG,EAAA;AAClD,QAAAD,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,QAAQ,EAAC,SAAS,EAAC,QAAQ,EAAC,SAAS,EAAC,CAAC,EAAC,ijCAAijC,EAAG,CAAA,CACzlC,EACT;AACH,CAAC;;;;"}
@@ -0,0 +1,7 @@
1
+ {
2
+ "private": true,
3
+ "sideEffects": false,
4
+ "main": "index.js",
5
+ "module": "index.esm.js",
6
+ "types": "index.d.ts"
7
+ }
package/index.d.ts CHANGED
@@ -7,6 +7,7 @@ export { default as CheckedCircleIcon } from './CheckedCircleIcon';
7
7
  export { default as ChevronDownIcon } from './ChevronDownIcon';
8
8
  export { default as ChevronRightIcon } from './ChevronRightIcon';
9
9
  export { default as CircleCheckFilledIcon } from './CircleCheckFilledIcon';
10
+ export { default as ClockIcon } from './ClockIcon';
10
11
  export { default as ContainerTemplateIcon } from './ContainerTemplateIcon';
11
12
  export { default as CopyIcon } from './CopyIcon';
12
13
  export { default as DatabaseIcon } from './DatabaseIcon';
@@ -32,6 +33,7 @@ export { default as KeyboardIcon } from './KeyboardIcon';
32
33
  export { default as LandingPageTemplateIcon } from './LandingPageTemplateIcon';
33
34
  export { default as LaptopIcon } from './LaptopIcon';
34
35
  export { default as LinkIcon } from './LinkIcon';
36
+ export { default as LockIcon } from './LockIcon';
35
37
  export { default as LoopItemTemplateIcon } from './LoopItemTemplateIcon';
36
38
  export { default as MailIcon } from './MailIcon';
37
39
  export { default as MessageIcon } from './MessageIcon';
package/index.esm.js CHANGED
@@ -47,6 +47,11 @@ const CircleCheckFilledIcon = React.forwardRef((props, ref) => {
47
47
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 2.25C10.7196 2.25 9.45176 2.50219 8.26884 2.99217C7.08591 3.48216 6.01108 4.20034 5.10571 5.10571C4.20034 6.01108 3.48216 7.08591 2.99217 8.26884C2.50219 9.45176 2.25 10.7196 2.25 12C2.25 13.2804 2.50219 14.5482 2.99217 15.7312C3.48216 16.9141 4.20034 17.9889 5.10571 18.8943C6.01108 19.7997 7.08591 20.5178 8.26884 21.0078C9.45176 21.4978 10.7196 21.75 12 21.75C13.2804 21.75 14.5482 21.4978 15.7312 21.0078C16.9141 20.5178 17.9889 19.7997 18.8943 18.8943C19.7997 17.9889 20.5178 16.9141 21.0078 15.7312C21.4978 14.5482 21.75 13.2804 21.75 12C21.75 10.7196 21.4978 9.45176 21.0078 8.26884C20.5178 7.08591 19.7997 6.01108 18.8943 5.10571C17.9889 4.20034 16.9141 3.48216 15.7312 2.99217C14.5482 2.50219 13.2804 2.25 12 2.25ZM16.2415 10.0563C16.5344 9.76339 16.5344 9.28852 16.2415 8.99563C15.9486 8.70273 15.4737 8.70273 15.1809 8.99563L10.7631 13.4134L8.81939 11.4697C8.5265 11.1768 8.05163 11.1768 7.75873 11.4697C7.46584 11.7626 7.46584 12.2374 7.75873 12.5303L10.2328 15.0044C10.3734 15.145 10.5642 15.224 10.7631 15.224C10.962 15.224 11.1528 15.145 11.2934 15.0044L16.2415 10.0563Z" })));
48
48
  });
49
49
 
50
+ const ClockIcon = React.forwardRef((props, ref) => {
51
+ return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
52
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM12 6.25C12.4142 6.25 12.75 6.58579 12.75 7V11.6893L15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303C15.2374 15.8232 14.7626 15.8232 14.4697 15.5303L11.4697 12.5303C11.329 12.3897 11.25 12.1989 11.25 12V7C11.25 6.58579 11.5858 6.25 12 6.25Z" })));
53
+ });
54
+
50
55
  const ContainerTemplateIcon = React.forwardRef((props, ref) => {
51
56
  return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
52
57
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.75 5.25C4.05964 5.25 3.5 5.80964 3.5 6.5V17.5C3.5 18.1904 4.05964 18.75 4.75 18.75H7.75C8.16421 18.75 8.5 19.0858 8.5 19.5C8.5 19.9142 8.16421 20.25 7.75 20.25H4.75C3.23122 20.25 2 19.0188 2 17.5V6.5C2 4.98122 3.23122 3.75 4.75 3.75H16.75C18.2688 3.75 19.5 4.98122 19.5 6.5V8C19.5 8.41421 19.1642 8.75 18.75 8.75C18.3358 8.75 18 8.41421 18 8V6.5C18 5.80964 17.4404 5.25 16.75 5.25H4.75ZM12.75 13.25C12.6676 13.25 12.5982 13.281 12.5546 13.3217C12.5128 13.3607 12.5 13.4021 12.5 13.4333V18.5667C12.5 18.5979 12.5128 18.6393 12.5546 18.6783C12.5982 18.719 12.6676 18.75 12.75 18.75H19.75C19.8324 18.75 19.9018 18.719 19.9454 18.6783C19.9872 18.6393 20 18.5979 20 18.5667V14.8333C20 14.8021 19.9872 14.7607 19.9454 14.7217C19.9018 14.681 19.8324 14.65 19.75 14.65H16.25C16.06 14.65 15.8771 14.5779 15.7383 14.4483L14.4544 13.25H12.75ZM11.5312 12.2251C11.8627 11.9156 12.3019 11.75 12.75 11.75H14.75C14.94 11.75 15.1229 11.8221 15.2617 11.9517L16.5456 13.15H19.75C20.1981 13.15 20.6373 13.3156 20.9688 13.6251C21.3021 13.9361 21.5 14.3695 21.5 14.8333V18.5667C21.5 19.0305 21.3021 19.4639 20.9688 19.7749C20.6373 20.0844 20.1981 20.25 19.75 20.25H12.75C12.3019 20.25 11.8627 20.0844 11.5312 19.7749C11.1979 19.4639 11 19.0305 11 18.5667V13.4333C11 12.9695 11.1979 12.5361 11.5312 12.2251Z" })));
@@ -184,6 +189,11 @@ const LinkIcon = React.forwardRef((props, ref) => {
184
189
  React.createElement("path", { d: "M3.90579 8.16591C2.88036 9.19133 2.88036 10.8539 3.90579 11.8793L4.19479 12.1683C5.22021 13.1937 6.88276 13.1937 7.90818 12.1683L8.59463 11.4818C8.7899 11.2866 9.10648 11.2866 9.30174 11.4818C9.497 11.6771 9.497 11.9937 9.30174 12.189L8.61529 12.8754C7.19934 14.2914 4.90363 14.2914 3.48768 12.8754L3.19868 12.5864C1.78273 11.1705 1.78273 8.87475 3.19868 7.4588L3.88513 6.77235C4.0804 6.57709 4.39698 6.57709 4.59224 6.77235C4.7875 6.96761 4.7875 7.28419 4.59224 7.47946L3.90579 8.16591Z", fill: "white" })))));
185
190
  });
186
191
 
192
+ const LockIcon = React.forwardRef((props, ref) => {
193
+ return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
194
+ React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 3.75C11.138 3.75 10.3114 4.09241 9.7019 4.7019C9.09241 5.3114 8.75 6.13805 8.75 7V10.25H15.25V7C15.25 6.13805 14.9076 5.3114 14.2981 4.7019C13.6886 4.09241 12.862 3.75 12 3.75ZM16.75 10.25V7C16.75 5.74022 16.2496 4.53204 15.3588 3.64124C14.468 2.75044 13.2598 2.25 12 2.25C10.7402 2.25 9.53204 2.75044 8.64124 3.64124C7.75044 4.53204 7.25 5.74022 7.25 7V10.25H7C6.27065 10.25 5.57118 10.5397 5.05546 11.0555C4.53973 11.5712 4.25 12.2707 4.25 13V19C4.25 19.7293 4.53973 20.4288 5.05546 20.9445C5.57118 21.4603 6.27065 21.75 7 21.75H17C17.7293 21.75 18.4288 21.4603 18.9445 20.9445C19.4603 20.4288 19.75 19.7293 19.75 19V13C19.75 12.2707 19.4603 11.5712 18.9445 11.0555C18.4288 10.5397 17.7293 10.25 17 10.25H16.75ZM7 11.75C6.66848 11.75 6.35054 11.8817 6.11612 12.1161C5.8817 12.3505 5.75 12.6685 5.75 13V19C5.75 19.3315 5.8817 19.6495 6.11612 19.8839C6.35054 20.1183 6.66848 20.25 7 20.25H17C17.3315 20.25 17.6495 20.1183 17.8839 19.8839C18.1183 19.6495 18.25 19.3315 18.25 19V13C18.25 12.6685 18.1183 12.3505 17.8839 12.1161C17.6495 11.8817 17.3315 11.75 17 11.75H7Z" })));
195
+ });
196
+
187
197
  const LoopItemTemplateIcon = React.forwardRef((props, ref) => {
188
198
  return (React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref: ref },
189
199
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.25003 3C3.25003 2.58578 3.58581 2.25 4.00003 2.25H12.1795C12.3784 2.25 12.5692 2.32902 12.7099 2.46967C12.8505 2.61032 12.9295 2.80109 12.9295 3L12.9295 10.5C12.9295 10.9142 12.5937 11.25 12.1795 11.25H4C3.80109 11.25 3.61032 11.171 3.46967 11.0303C3.32902 10.8897 3.25 10.6989 3.25 10.5L3.25003 3ZM4.75002 3.75L4.75 9.75H11.4295L11.4295 3.75H4.75002ZM3.25003 13.5C3.25003 13.0858 3.58581 12.75 4.00003 12.75H12.1795C12.5937 12.75 12.9295 13.0858 12.9295 13.5C12.9295 13.9142 12.5937 14.25 12.1795 14.25H4.00003C3.58581 14.25 3.25003 13.9142 3.25003 13.5Z" }),
@@ -394,5 +404,5 @@ const XIcon = React.forwardRef((props, ref) => {
394
404
  React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z" })));
395
405
  });
396
406
 
397
- export { AIIcon, AdjustmentsHorizontalIcon, ArchiveTemplateIcon, ArrowUpRightIcon, BrushIcon, CheckedCircleIcon, ChevronDownIcon, ChevronRightIcon, CircleCheckFilledIcon, ContainerTemplateIcon, CopyIcon, DatabaseIcon, DesktopIcon, DiscountCheckFilledIcon, DotsHorizontalIcon, DotsVerticalIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandDiagonalIcon, ExpandIcon, EyeIcon, FileReportIcon, FolderIcon, FooterTemplateIcon, HeaderTemplateIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LinkIcon, LoopItemTemplateIcon, MailIcon, MessageIcon, MinimizeDiagonalIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RefreshIcon, RocketIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, UploadIcon, UserIcon, WidescreenIcon, WordpressIcon, XIcon };
407
+ export { AIIcon, AdjustmentsHorizontalIcon, ArchiveTemplateIcon, ArrowUpRightIcon, BrushIcon, CheckedCircleIcon, ChevronDownIcon, ChevronRightIcon, CircleCheckFilledIcon, ClockIcon, ContainerTemplateIcon, CopyIcon, DatabaseIcon, DesktopIcon, DiscountCheckFilledIcon, DotsHorizontalIcon, DotsVerticalIcon, EditIcon, EraseIcon, Error404TemplateIcon, ExpandDiagonalIcon, ExpandIcon, EyeIcon, FileReportIcon, FolderIcon, FooterTemplateIcon, HeaderTemplateIcon, HelpIcon, HistoryIcon, HomeIcon, InfoCircleIcon, KeyboardIcon, LandingPageTemplateIcon, LaptopIcon, LinkIcon, LockIcon, LoopItemTemplateIcon, MailIcon, MessageIcon, MinimizeDiagonalIcon, MobileIcon, MobileLandscapeIcon, MobilePortraitIcon, PageTemplateIcon, PageTypeIcon, PagesIcon, PlugCheckIcon, PlugIcon, PlugRefreshIcon, PlugXIcon, PlusIcon, PopupTemplateIcon, PostTypeIcon, RadioButtonUncheckedIcon, RefreshIcon, RocketIcon, SearchIcon, SearchResultsTemplateIcon, SectionTemplateIcon, SettingsIcon, ShrinkIcon, StructureIcon, TabletIcon, TabletLandscapeIcon, TabletPortraitIcon, ThemeBuilderIcon, ToggleRightIcon, TrashIcon, UpgradeIcon, UploadIcon, UserIcon, WidescreenIcon, WordpressIcon, XIcon };
398
408
  //# sourceMappingURL=index.esm.js.map