@elementor/icons 1.37.0 → 1.39.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.
Files changed (58) hide show
  1. package/ChevronDownSmallIcon/index.d.ts +4 -0
  2. package/ChevronDownSmallIcon/index.esm.js +16 -0
  3. package/ChevronDownSmallIcon/index.esm.js.map +1 -0
  4. package/ChevronDownSmallIcon/index.js +43 -0
  5. package/ChevronDownSmallIcon/index.js.map +1 -0
  6. package/ChevronDownSmallIcon/package.json +7 -0
  7. package/ChevronLeftSmallIcon/index.d.ts +4 -0
  8. package/ChevronLeftSmallIcon/index.esm.js +16 -0
  9. package/ChevronLeftSmallIcon/index.esm.js.map +1 -0
  10. package/ChevronLeftSmallIcon/index.js +43 -0
  11. package/ChevronLeftSmallIcon/index.js.map +1 -0
  12. package/ChevronLeftSmallIcon/package.json +7 -0
  13. package/ChevronRightIcon/index.esm.js +1 -1
  14. package/ChevronRightIcon/index.esm.js.map +1 -1
  15. package/ChevronRightIcon/index.js +1 -1
  16. package/ChevronRightIcon/index.js.map +1 -1
  17. package/ChevronRightSmallIcon/index.d.ts +4 -0
  18. package/ChevronRightSmallIcon/index.esm.js +16 -0
  19. package/ChevronRightSmallIcon/index.esm.js.map +1 -0
  20. package/ChevronRightSmallIcon/index.js +43 -0
  21. package/ChevronRightSmallIcon/index.js.map +1 -0
  22. package/ChevronRightSmallIcon/package.json +7 -0
  23. package/ChevronUpSmallIcon/index.d.ts +4 -0
  24. package/ChevronUpSmallIcon/index.esm.js +16 -0
  25. package/ChevronUpSmallIcon/index.esm.js.map +1 -0
  26. package/ChevronUpSmallIcon/index.js +43 -0
  27. package/ChevronUpSmallIcon/index.js.map +1 -0
  28. package/ChevronUpSmallIcon/package.json +7 -0
  29. package/Menu2Icon/index.d.ts +4 -0
  30. package/Menu2Icon/index.esm.js +9 -0
  31. package/Menu2Icon/index.esm.js.map +1 -0
  32. package/Menu2Icon/index.js +36 -0
  33. package/Menu2Icon/index.js.map +1 -0
  34. package/Menu2Icon/package.json +7 -0
  35. package/PencilSparklesIcon/index.d.ts +4 -0
  36. package/PencilSparklesIcon/index.esm.js +23 -0
  37. package/PencilSparklesIcon/index.esm.js.map +1 -0
  38. package/PencilSparklesIcon/index.js +50 -0
  39. package/PencilSparklesIcon/index.js.map +1 -0
  40. package/PencilSparklesIcon/package.json +7 -0
  41. package/ReloadIcon/index.d.ts +4 -0
  42. package/ReloadIcon/index.esm.js +16 -0
  43. package/ReloadIcon/index.esm.js.map +1 -0
  44. package/ReloadIcon/index.js +43 -0
  45. package/ReloadIcon/index.js.map +1 -0
  46. package/ReloadIcon/package.json +7 -0
  47. package/Send2Icon/index.d.ts +4 -0
  48. package/Send2Icon/index.esm.js +16 -0
  49. package/Send2Icon/index.esm.js.map +1 -0
  50. package/Send2Icon/index.js +43 -0
  51. package/Send2Icon/index.js.map +1 -0
  52. package/Send2Icon/package.json +7 -0
  53. package/index.d.ts +8 -0
  54. package/index.esm.js +90 -2
  55. package/index.esm.js.map +1 -1
  56. package/index.js +97 -1
  57. package/index.js.map +1 -1
  58. package/package.json +1 -1
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SvgIconProps } from '@elementor/ui/SvgIcon';
3
+ declare const ChevronDownSmallIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default ChevronDownSmallIcon;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const ChevronDownSmallIcon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
6
+ "path",
7
+ {
8
+ fillRule: "evenodd",
9
+ clipRule: "evenodd",
10
+ d: "M7.46967 10.4697C7.76256 10.1768 8.23744 10.1768 8.53033 10.4697L12 13.9393L15.4697 10.4697C15.7626 10.1768 16.2374 10.1768 16.5303 10.4697C16.8232 10.7626 16.8232 11.2374 16.5303 11.5303L12.5303 15.5303C12.2374 15.8232 11.7626 15.8232 11.4697 15.5303L7.46967 11.5303C7.17678 11.2374 7.17678 10.7626 7.46967 10.4697Z"
11
+ }
12
+ ));
13
+ });
14
+
15
+ export { ChevronDownSmallIcon as default };
16
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/ChevronDownSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronDownSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M7.46967 10.4697C7.76256 10.1768 8.23744 10.1768 8.53033 10.4697L12 13.9393L15.4697 10.4697C15.7626 10.1768 16.2374 10.1768 16.5303 10.4697C16.8232 10.7626 16.8232 11.2374 16.5303 11.5303L12.5303 15.5303C12.2374 15.8232 11.7626 15.8232 11.4697 15.5303L7.46967 11.5303C7.17678 11.2374 7.17678 10.7626 7.46967 10.4697Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronDownSmallIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,oBAAuB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC/F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,43 @@
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 _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
+
10
+ function _interopNamespaceCompat(e) {
11
+ if (e && typeof e === 'object' && 'default' in e) 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__*/_interopNamespaceCompat(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
30
+
31
+ const ChevronDownSmallIcon = React__namespace.forwardRef((props, ref) => {
32
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
33
+ "path",
34
+ {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M7.46967 10.4697C7.76256 10.1768 8.23744 10.1768 8.53033 10.4697L12 13.9393L15.4697 10.4697C15.7626 10.1768 16.2374 10.1768 16.5303 10.4697C16.8232 10.7626 16.8232 11.2374 16.5303 11.5303L12.5303 15.5303C12.2374 15.8232 11.7626 15.8232 11.4697 15.5303L7.46967 11.5303C7.17678 11.2374 7.17678 10.7626 7.46967 10.4697Z"
38
+ }
39
+ ));
40
+ });
41
+
42
+ exports.default = ChevronDownSmallIcon;
43
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/ChevronDownSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronDownSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M7.46967 10.4697C7.76256 10.1768 8.23744 10.1768 8.53033 10.4697L12 13.9393L15.4697 10.4697C15.7626 10.1768 16.2374 10.1768 16.5303 10.4697C16.8232 10.7626 16.8232 11.2374 16.5303 11.5303L12.5303 15.5303C12.2374 15.8232 11.7626 15.8232 11.4697 15.5303L7.46967 11.5303C7.17678 11.2374 7.17678 10.7626 7.46967 10.4697Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronDownSmallIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,oBAAuB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC/F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -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 ChevronLeftSmallIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default ChevronLeftSmallIcon;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const ChevronLeftSmallIcon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
6
+ "path",
7
+ {
8
+ fillRule: "evenodd",
9
+ clipRule: "evenodd",
10
+ d: "M14.2803 7.46967C14.5732 7.76256 14.5732 8.23744 14.2803 8.53033L10.8107 12L14.2803 15.4697C14.5732 15.7626 14.5732 16.2374 14.2803 16.5303C13.9874 16.8232 13.5126 16.8232 13.2197 16.5303L9.21967 12.5303C8.92678 12.2374 8.92678 11.7626 9.21967 11.4697L13.2197 7.46967C13.5126 7.17678 13.9874 7.17678 14.2803 7.46967Z"
11
+ }
12
+ ));
13
+ });
14
+
15
+ export { ChevronLeftSmallIcon as default };
16
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/ChevronLeftSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronLeftSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M14.2803 7.46967C14.5732 7.76256 14.5732 8.23744 14.2803 8.53033L10.8107 12L14.2803 15.4697C14.5732 15.7626 14.5732 16.2374 14.2803 16.5303C13.9874 16.8232 13.5126 16.8232 13.2197 16.5303L9.21967 12.5303C8.92678 12.2374 8.92678 11.7626 9.21967 11.4697L13.2197 7.46967C13.5126 7.17678 13.9874 7.17678 14.2803 7.46967Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronLeftSmallIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,oBAAuB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC/F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,43 @@
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 _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
+
10
+ function _interopNamespaceCompat(e) {
11
+ if (e && typeof e === 'object' && 'default' in e) 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__*/_interopNamespaceCompat(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
30
+
31
+ const ChevronLeftSmallIcon = React__namespace.forwardRef((props, ref) => {
32
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
33
+ "path",
34
+ {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M14.2803 7.46967C14.5732 7.76256 14.5732 8.23744 14.2803 8.53033L10.8107 12L14.2803 15.4697C14.5732 15.7626 14.5732 16.2374 14.2803 16.5303C13.9874 16.8232 13.5126 16.8232 13.2197 16.5303L9.21967 12.5303C8.92678 12.2374 8.92678 11.7626 9.21967 11.4697L13.2197 7.46967C13.5126 7.17678 13.9874 7.17678 14.2803 7.46967Z"
38
+ }
39
+ ));
40
+ });
41
+
42
+ exports.default = ChevronLeftSmallIcon;
43
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/ChevronLeftSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronLeftSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M14.2803 7.46967C14.5732 7.76256 14.5732 8.23744 14.2803 8.53033L10.8107 12L14.2803 15.4697C14.5732 15.7626 14.5732 16.2374 14.2803 16.5303C13.9874 16.8232 13.5126 16.8232 13.2197 16.5303L9.21967 12.5303C8.92678 12.2374 8.92678 11.7626 9.21967 11.4697L13.2197 7.46967C13.5126 7.17678 13.9874 7.17678 14.2803 7.46967Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronLeftSmallIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,oBAAuB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC/F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -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
+ }
@@ -7,7 +7,7 @@ const ChevronRightIcon = React.forwardRef((props, ref) => {
7
7
  {
8
8
  fillRule: "evenodd",
9
9
  clipRule: "evenodd",
10
- d: "M9.46967 7.46967C9.17678 7.76256 9.17678 8.23744 9.46967 8.53033L12.9393 12L9.46967 15.4697C9.17678 15.7626 9.17678 16.2374 9.46967 16.5303C9.76256 16.8232 10.2374 16.8232 10.5303 16.5303L14.5303 12.5303C14.8232 12.2374 14.8232 11.7626 14.5303 11.4697L10.5303 7.46967C10.2374 7.17678 9.76256 7.17678 9.46967 7.46967Z"
10
+ d: "M9.01972 18.2803C8.72683 17.9874 8.72683 17.5126 9.01972 17.2197L14.4894 11.75L9.01972 6.28033C8.72682 5.98744 8.72682 5.51256 9.01972 5.21967C9.31261 4.92678 9.78749 4.92678 10.0804 5.21967L16.0804 11.2197C16.3733 11.5126 16.3733 11.9874 16.0804 12.2803L10.0804 18.2803C9.78749 18.5732 9.31261 18.5732 9.01972 18.2803Z"
11
11
  }
12
12
  ));
13
13
  });
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":["../../src/ChevronRightIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronRightIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.46967 7.46967C9.17678 7.76256 9.17678 8.23744 9.46967 8.53033L12.9393 12L9.46967 15.4697C9.17678 15.7626 9.17678 16.2374 9.46967 16.5303C9.76256 16.8232 10.2374 16.8232 10.5303 16.5303L14.5303 12.5303C14.8232 12.2374 14.8232 11.7626 14.5303 11.4697L10.5303 7.46967C10.2374 7.17678 9.76256 7.17678 9.46967 7.46967Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronRightIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,gBAAmB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC3F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/ChevronRightIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronRightIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.01972 18.2803C8.72683 17.9874 8.72683 17.5126 9.01972 17.2197L14.4894 11.75L9.01972 6.28033C8.72682 5.98744 8.72682 5.51256 9.01972 5.21967C9.31261 4.92678 9.78749 4.92678 10.0804 5.21967L16.0804 11.2197C16.3733 11.5126 16.3733 11.9874 16.0804 12.2803L10.0804 18.2803C9.78749 18.5732 9.31261 18.5732 9.01972 18.2803Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronRightIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,gBAAmB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC3F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -34,7 +34,7 @@ const ChevronRightIcon = React__namespace.forwardRef((props, ref) => {
34
34
  {
35
35
  fillRule: "evenodd",
36
36
  clipRule: "evenodd",
37
- d: "M9.46967 7.46967C9.17678 7.76256 9.17678 8.23744 9.46967 8.53033L12.9393 12L9.46967 15.4697C9.17678 15.7626 9.17678 16.2374 9.46967 16.5303C9.76256 16.8232 10.2374 16.8232 10.5303 16.5303L14.5303 12.5303C14.8232 12.2374 14.8232 11.7626 14.5303 11.4697L10.5303 7.46967C10.2374 7.17678 9.76256 7.17678 9.46967 7.46967Z"
37
+ d: "M9.01972 18.2803C8.72683 17.9874 8.72683 17.5126 9.01972 17.2197L14.4894 11.75L9.01972 6.28033C8.72682 5.98744 8.72682 5.51256 9.01972 5.21967C9.31261 4.92678 9.78749 4.92678 10.0804 5.21967L16.0804 11.2197C16.3733 11.5126 16.3733 11.9874 16.0804 12.2803L10.0804 18.2803C9.78749 18.5732 9.31261 18.5732 9.01972 18.2803Z"
38
38
  }
39
39
  ));
40
40
  });
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../../src/ChevronRightIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronRightIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.46967 7.46967C9.17678 7.76256 9.17678 8.23744 9.46967 8.53033L12.9393 12L9.46967 15.4697C9.17678 15.7626 9.17678 16.2374 9.46967 16.5303C9.76256 16.8232 10.2374 16.8232 10.5303 16.5303L14.5303 12.5303C14.8232 12.2374 14.8232 11.7626 14.5303 11.4697L10.5303 7.46967C10.2374 7.17678 9.76256 7.17678 9.46967 7.46967Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronRightIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,gBAAmB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC3F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
1
+ {"version":3,"file":"index.js","sources":["../../src/ChevronRightIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronRightIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.01972 18.2803C8.72683 17.9874 8.72683 17.5126 9.01972 17.2197L14.4894 11.75L9.01972 6.28033C8.72682 5.98744 8.72682 5.51256 9.01972 5.21967C9.31261 4.92678 9.78749 4.92678 10.0804 5.21967L16.0804 11.2197C16.3733 11.5126 16.3733 11.9874 16.0804 12.2803L10.0804 18.2803C9.78749 18.5732 9.31261 18.5732 9.01972 18.2803Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronRightIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,gBAAmB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC3F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SvgIconProps } from '@elementor/ui/SvgIcon';
3
+ declare const ChevronRightSmallIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default ChevronRightSmallIcon;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const ChevronRightSmallIcon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
6
+ "path",
7
+ {
8
+ fillRule: "evenodd",
9
+ clipRule: "evenodd",
10
+ d: "M9.71967 16.5303C9.42678 16.2374 9.42678 15.7626 9.71967 15.4697L13.1893 12L9.71967 8.53033C9.42678 8.23744 9.42678 7.76256 9.71967 7.46967C10.0126 7.17678 10.4874 7.17678 10.7803 7.46967L14.7803 11.4697C15.0732 11.7626 15.0732 12.2374 14.7803 12.5303L10.7803 16.5303C10.4874 16.8232 10.0126 16.8232 9.71967 16.5303Z"
11
+ }
12
+ ));
13
+ });
14
+
15
+ export { ChevronRightSmallIcon as default };
16
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/ChevronRightSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronRightSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.71967 16.5303C9.42678 16.2374 9.42678 15.7626 9.71967 15.4697L13.1893 12L9.71967 8.53033C9.42678 8.23744 9.42678 7.76256 9.71967 7.46967C10.0126 7.17678 10.4874 7.17678 10.7803 7.46967L14.7803 11.4697C15.0732 11.7626 15.0732 12.2374 14.7803 12.5303L10.7803 16.5303C10.4874 16.8232 10.0126 16.8232 9.71967 16.5303Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronRightSmallIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,qBAAwB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAChG,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,43 @@
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 _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
+
10
+ function _interopNamespaceCompat(e) {
11
+ if (e && typeof e === 'object' && 'default' in e) 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__*/_interopNamespaceCompat(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
30
+
31
+ const ChevronRightSmallIcon = React__namespace.forwardRef((props, ref) => {
32
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
33
+ "path",
34
+ {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M9.71967 16.5303C9.42678 16.2374 9.42678 15.7626 9.71967 15.4697L13.1893 12L9.71967 8.53033C9.42678 8.23744 9.42678 7.76256 9.71967 7.46967C10.0126 7.17678 10.4874 7.17678 10.7803 7.46967L14.7803 11.4697C15.0732 11.7626 15.0732 12.2374 14.7803 12.5303L10.7803 16.5303C10.4874 16.8232 10.0126 16.8232 9.71967 16.5303Z"
38
+ }
39
+ ));
40
+ });
41
+
42
+ exports.default = ChevronRightSmallIcon;
43
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/ChevronRightSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronRightSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M9.71967 16.5303C9.42678 16.2374 9.42678 15.7626 9.71967 15.4697L13.1893 12L9.71967 8.53033C9.42678 8.23744 9.42678 7.76256 9.71967 7.46967C10.0126 7.17678 10.4874 7.17678 10.7803 7.46967L14.7803 11.4697C15.0732 11.7626 15.0732 12.2374 14.7803 12.5303L10.7803 16.5303C10.4874 16.8232 10.0126 16.8232 9.71967 16.5303Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronRightSmallIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,qBAAwB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAChG,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -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 ChevronUpSmallIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default ChevronUpSmallIcon;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const ChevronUpSmallIcon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
6
+ "path",
7
+ {
8
+ fillRule: "evenodd",
9
+ clipRule: "evenodd",
10
+ d: "M16.5303 14.5303C16.2374 14.8232 15.7626 14.8232 15.4697 14.5303L12 11.0607L8.53033 14.5303C8.23744 14.8232 7.76256 14.8232 7.46967 14.5303C7.17678 14.2374 7.17678 13.7626 7.46967 13.4697L11.4697 9.46967C11.7626 9.17678 12.2374 9.17678 12.5303 9.46967L16.5303 13.4697C16.8232 13.7626 16.8232 14.2374 16.5303 14.5303Z"
11
+ }
12
+ ));
13
+ });
14
+
15
+ export { ChevronUpSmallIcon as default };
16
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/ChevronUpSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronUpSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M16.5303 14.5303C16.2374 14.8232 15.7626 14.8232 15.4697 14.5303L12 11.0607L8.53033 14.5303C8.23744 14.8232 7.76256 14.8232 7.46967 14.5303C7.17678 14.2374 7.17678 13.7626 7.46967 13.4697L11.4697 9.46967C11.7626 9.17678 12.2374 9.17678 12.5303 9.46967L16.5303 13.4697C16.8232 13.7626 16.8232 14.2374 16.5303 14.5303Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronUpSmallIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,kBAAqB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC7F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,43 @@
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 _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
+
10
+ function _interopNamespaceCompat(e) {
11
+ if (e && typeof e === 'object' && 'default' in e) 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__*/_interopNamespaceCompat(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
30
+
31
+ const ChevronUpSmallIcon = React__namespace.forwardRef((props, ref) => {
32
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
33
+ "path",
34
+ {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M16.5303 14.5303C16.2374 14.8232 15.7626 14.8232 15.4697 14.5303L12 11.0607L8.53033 14.5303C8.23744 14.8232 7.76256 14.8232 7.46967 14.5303C7.17678 14.2374 7.17678 13.7626 7.46967 13.4697L11.4697 9.46967C11.7626 9.17678 12.2374 9.17678 12.5303 9.46967L16.5303 13.4697C16.8232 13.7626 16.8232 14.2374 16.5303 14.5303Z"
38
+ }
39
+ ));
40
+ });
41
+
42
+ exports.default = ChevronUpSmallIcon;
43
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/ChevronUpSmallIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst ChevronUpSmallIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M16.5303 14.5303C16.2374 14.8232 15.7626 14.8232 15.4697 14.5303L12 11.0607L8.53033 14.5303C8.23744 14.8232 7.76256 14.8232 7.46967 14.5303C7.17678 14.2374 7.17678 13.7626 7.46967 13.4697L11.4697 9.46967C11.7626 9.17678 12.2374 9.17678 12.5303 9.46967L16.5303 13.4697C16.8232 13.7626 16.8232 14.2374 16.5303 14.5303Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default ChevronUpSmallIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,kBAAqB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC7F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -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 Menu2Icon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default Menu2Icon;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const Menu2Icon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement("path", { d: "M3.25 8C3.25 7.58579 3.58579 7.25 4 7.25H20C20.4142 7.25 20.75 7.58579 20.75 8C20.75 8.41421 20.4142 8.75 20 8.75H4C3.58579 8.75 3.25 8.41421 3.25 8Z" }), /* @__PURE__ */ React.createElement("path", { d: "M3.25 16C3.25 15.5858 3.58579 15.25 4 15.25H20C20.4142 15.25 20.75 15.5858 20.75 16C20.75 16.4142 20.4142 16.75 20 16.75H4C3.58579 16.75 3.25 16.4142 3.25 16Z" }));
6
+ });
7
+
8
+ export { Menu2Icon as default };
9
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/Menu2Icon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst Menu2Icon = 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 d=\"M3.25 8C3.25 7.58579 3.58579 7.25 4 7.25H20C20.4142 7.25 20.75 7.58579 20.75 8C20.75 8.41421 20.4142 8.75 20 8.75H4C3.58579 8.75 3.25 8.41421 3.25 8Z\" />\n\t\t\t<path d=\"M3.25 16C3.25 15.5858 3.58579 15.25 4 15.25H20C20.4142 15.25 20.75 15.5858 20.75 16C20.75 16.4142 20.4142 16.75 20 16.75H4C3.58579 16.75 3.25 16.4142 3.25 16Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default Menu2Icon;\n"],"names":[],"mappings":";;;AAIA,MAAM,SAAY,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACpF,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA,CAAC,MAAK,EAAA,EAAA,CAAA,EAAE,yJAAwJ,CAChK,kBAAA,KAAA,CAAA,aAAA,CAAC,MAAK,EAAA,EAAA,CAAA,EAAE,kKAAiK,CAC1K,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,36 @@
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 _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
+
10
+ function _interopNamespaceCompat(e) {
11
+ if (e && typeof e === 'object' && 'default' in e) 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__*/_interopNamespaceCompat(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
30
+
31
+ const Menu2Icon = React__namespace.forwardRef((props, ref) => {
32
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement("path", { d: "M3.25 8C3.25 7.58579 3.58579 7.25 4 7.25H20C20.4142 7.25 20.75 7.58579 20.75 8C20.75 8.41421 20.4142 8.75 20 8.75H4C3.58579 8.75 3.25 8.41421 3.25 8Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M3.25 16C3.25 15.5858 3.58579 15.25 4 15.25H20C20.4142 15.25 20.75 15.5858 20.75 16C20.75 16.4142 20.4142 16.75 20 16.75H4C3.58579 16.75 3.25 16.4142 3.25 16Z" }));
33
+ });
34
+
35
+ exports.default = Menu2Icon;
36
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/Menu2Icon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst Menu2Icon = 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 d=\"M3.25 8C3.25 7.58579 3.58579 7.25 4 7.25H20C20.4142 7.25 20.75 7.58579 20.75 8C20.75 8.41421 20.4142 8.75 20 8.75H4C3.58579 8.75 3.25 8.41421 3.25 8Z\" />\n\t\t\t<path d=\"M3.25 16C3.25 15.5858 3.58579 15.25 4 15.25H20C20.4142 15.25 20.75 15.5858 20.75 16C20.75 16.4142 20.4142 16.75 20 16.75H4C3.58579 16.75 3.25 16.4142 3.25 16Z\" />\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default Menu2Icon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,SAAY,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AACpF,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA,CAAC,MAAK,EAAA,EAAA,CAAA,EAAE,yJAAwJ,CAChK,kBAAAA,gBAAA,CAAA,aAAA,CAAC,MAAK,EAAA,EAAA,CAAA,EAAE,kKAAiK,CAC1K,CAAA;AAEF,CAAE;;;;"}
@@ -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 PencilSparklesIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default PencilSparklesIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const PencilSparklesIcon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
6
+ "path",
7
+ {
8
+ fillRule: "evenodd",
9
+ clipRule: "evenodd",
10
+ d: "M6.5 3.75C6.5 3.33579 6.16421 3 5.75 3C5.33579 3 5 3.33579 5 3.75C5 4.08152 4.8683 4.39946 4.63388 4.63388C4.39946 4.8683 4.08152 5 3.75 5C3.33579 5 3 5.33579 3 5.75C3 6.16421 3.33579 6.5 3.75 6.5C4.08152 6.5 4.39946 6.6317 4.63388 6.86612C4.8683 7.10054 5 7.41848 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5C6.16421 8.5 6.5 8.16421 6.5 7.75C6.5 7.41848 6.6317 7.10054 6.86612 6.86612C7.10054 6.6317 7.41848 6.5 7.75 6.5C8.16421 6.5 8.5 6.16421 8.5 5.75C8.5 5.33579 8.16421 5 7.75 5C7.41848 5 7.10054 4.8683 6.86612 4.63388C6.6317 4.39946 6.5 4.08152 6.5 3.75ZM5.69454 5.69454C5.71333 5.67576 5.73182 5.65673 5.75 5.63746C5.76818 5.65673 5.78667 5.67576 5.80546 5.69454C5.82424 5.71333 5.84327 5.73182 5.86254 5.75C5.84327 5.76818 5.82424 5.78667 5.80546 5.80546C5.78667 5.82424 5.76818 5.84327 5.75 5.86254C5.73182 5.84327 5.71333 5.82424 5.69454 5.80546C5.67576 5.78667 5.65673 5.76818 5.63746 5.75C5.65673 5.73182 5.67576 5.71333 5.69454 5.69454Z"
11
+ }
12
+ ), /* @__PURE__ */ React.createElement(
13
+ "path",
14
+ {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M17.25 3.67188C16.3009 3.67188 15.3908 4.04889 14.7197 4.71997L13.7253 5.71433L13.7197 5.71991L13.7141 5.72555L4.21967 15.22C4.07902 15.3606 4 15.5514 4 15.7503V19.7503C4 20.1645 4.33579 20.5003 4.75 20.5003H8.75C8.94891 20.5003 9.13968 20.4213 9.28033 20.2806L19.7803 9.78063C20.4514 9.10955 20.8284 8.19936 20.8284 7.2503C20.8284 6.30124 20.4514 5.39106 19.7803 4.71997C19.1092 4.04889 18.1991 3.67188 17.25 3.67188ZM5.5 16.061L14.25 7.31093L17.1894 10.2503L8.43934 19.0003H5.5V16.061ZM15.3107 6.25027L18.25 9.18961L18.7197 8.71997C19.1095 8.33019 19.3284 7.80154 19.3284 7.2503C19.3284 6.69907 19.1095 6.17041 18.7197 5.78063C18.3299 5.39085 17.8012 5.17188 17.25 5.17188C16.6988 5.17188 16.1701 5.39085 15.7803 5.78063L15.3107 6.25027Z"
18
+ }
19
+ ));
20
+ });
21
+
22
+ export { PencilSparklesIcon as default };
23
+ //# sourceMappingURL=index.esm.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.esm.js","sources":["../../src/PencilSparklesIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst PencilSparklesIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M6.5 3.75C6.5 3.33579 6.16421 3 5.75 3C5.33579 3 5 3.33579 5 3.75C5 4.08152 4.8683 4.39946 4.63388 4.63388C4.39946 4.8683 4.08152 5 3.75 5C3.33579 5 3 5.33579 3 5.75C3 6.16421 3.33579 6.5 3.75 6.5C4.08152 6.5 4.39946 6.6317 4.63388 6.86612C4.8683 7.10054 5 7.41848 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5C6.16421 8.5 6.5 8.16421 6.5 7.75C6.5 7.41848 6.6317 7.10054 6.86612 6.86612C7.10054 6.6317 7.41848 6.5 7.75 6.5C8.16421 6.5 8.5 6.16421 8.5 5.75C8.5 5.33579 8.16421 5 7.75 5C7.41848 5 7.10054 4.8683 6.86612 4.63388C6.6317 4.39946 6.5 4.08152 6.5 3.75ZM5.69454 5.69454C5.71333 5.67576 5.73182 5.65673 5.75 5.63746C5.76818 5.65673 5.78667 5.67576 5.80546 5.69454C5.82424 5.71333 5.84327 5.73182 5.86254 5.75C5.84327 5.76818 5.82424 5.78667 5.80546 5.80546C5.78667 5.82424 5.76818 5.84327 5.75 5.86254C5.73182 5.84327 5.71333 5.82424 5.69454 5.80546C5.67576 5.78667 5.65673 5.76818 5.63746 5.75C5.65673 5.73182 5.67576 5.71333 5.69454 5.69454Z\"\n\t\t\t/>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M17.25 3.67188C16.3009 3.67188 15.3908 4.04889 14.7197 4.71997L13.7253 5.71433L13.7197 5.71991L13.7141 5.72555L4.21967 15.22C4.07902 15.3606 4 15.5514 4 15.7503V19.7503C4 20.1645 4.33579 20.5003 4.75 20.5003H8.75C8.94891 20.5003 9.13968 20.4213 9.28033 20.2806L19.7803 9.78063C20.4514 9.10955 20.8284 8.19936 20.8284 7.2503C20.8284 6.30124 20.4514 5.39106 19.7803 4.71997C19.1092 4.04889 18.1991 3.67188 17.25 3.67188ZM5.5 16.061L14.25 7.31093L17.1894 10.2503L8.43934 19.0003H5.5V16.061ZM15.3107 6.25027L18.25 9.18961L18.7197 8.71997C19.1095 8.33019 19.3284 7.80154 19.3284 7.2503C19.3284 6.69907 19.1095 6.17041 18.7197 5.78063C18.3299 5.39085 17.8012 5.17188 17.25 5.17188C16.6988 5.17188 16.1701 5.39085 15.7803 5.78063L15.3107 6.25027Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default PencilSparklesIcon;\n"],"names":[],"mappings":";;;AAIA,MAAM,kBAAqB,GAAA,KAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC7F,EAAA,2CACE,OAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEH,kBAAA,KAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -0,0 +1,50 @@
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 _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
9
+
10
+ function _interopNamespaceCompat(e) {
11
+ if (e && typeof e === 'object' && 'default' in e) 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__*/_interopNamespaceCompat(React);
29
+ var SvgIcon__default = /*#__PURE__*/_interopDefaultCompat(SvgIcon);
30
+
31
+ const PencilSparklesIcon = React__namespace.forwardRef((props, ref) => {
32
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
33
+ "path",
34
+ {
35
+ fillRule: "evenodd",
36
+ clipRule: "evenodd",
37
+ d: "M6.5 3.75C6.5 3.33579 6.16421 3 5.75 3C5.33579 3 5 3.33579 5 3.75C5 4.08152 4.8683 4.39946 4.63388 4.63388C4.39946 4.8683 4.08152 5 3.75 5C3.33579 5 3 5.33579 3 5.75C3 6.16421 3.33579 6.5 3.75 6.5C4.08152 6.5 4.39946 6.6317 4.63388 6.86612C4.8683 7.10054 5 7.41848 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5C6.16421 8.5 6.5 8.16421 6.5 7.75C6.5 7.41848 6.6317 7.10054 6.86612 6.86612C7.10054 6.6317 7.41848 6.5 7.75 6.5C8.16421 6.5 8.5 6.16421 8.5 5.75C8.5 5.33579 8.16421 5 7.75 5C7.41848 5 7.10054 4.8683 6.86612 4.63388C6.6317 4.39946 6.5 4.08152 6.5 3.75ZM5.69454 5.69454C5.71333 5.67576 5.73182 5.65673 5.75 5.63746C5.76818 5.65673 5.78667 5.67576 5.80546 5.69454C5.82424 5.71333 5.84327 5.73182 5.86254 5.75C5.84327 5.76818 5.82424 5.78667 5.80546 5.80546C5.78667 5.82424 5.76818 5.84327 5.75 5.86254C5.73182 5.84327 5.71333 5.82424 5.69454 5.80546C5.67576 5.78667 5.65673 5.76818 5.63746 5.75C5.65673 5.73182 5.67576 5.71333 5.69454 5.69454Z"
38
+ }
39
+ ), /* @__PURE__ */ React__namespace.createElement(
40
+ "path",
41
+ {
42
+ fillRule: "evenodd",
43
+ clipRule: "evenodd",
44
+ d: "M17.25 3.67188C16.3009 3.67188 15.3908 4.04889 14.7197 4.71997L13.7253 5.71433L13.7197 5.71991L13.7141 5.72555L4.21967 15.22C4.07902 15.3606 4 15.5514 4 15.7503V19.7503C4 20.1645 4.33579 20.5003 4.75 20.5003H8.75C8.94891 20.5003 9.13968 20.4213 9.28033 20.2806L19.7803 9.78063C20.4514 9.10955 20.8284 8.19936 20.8284 7.2503C20.8284 6.30124 20.4514 5.39106 19.7803 4.71997C19.1092 4.04889 18.1991 3.67188 17.25 3.67188ZM5.5 16.061L14.25 7.31093L17.1894 10.2503L8.43934 19.0003H5.5V16.061ZM15.3107 6.25027L18.25 9.18961L18.7197 8.71997C19.1095 8.33019 19.3284 7.80154 19.3284 7.2503C19.3284 6.69907 19.1095 6.17041 18.7197 5.78063C18.3299 5.39085 17.8012 5.17188 17.25 5.17188C16.6988 5.17188 16.1701 5.39085 15.7803 5.78063L15.3107 6.25027Z"
45
+ }
46
+ ));
47
+ });
48
+
49
+ exports.default = PencilSparklesIcon;
50
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../../src/PencilSparklesIcon/index.tsx"],"sourcesContent":["'use client';\nimport * as React from 'react';\nimport SvgIcon, { SvgIconProps } from '@elementor/ui/SvgIcon';\n\nconst PencilSparklesIcon = 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\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M6.5 3.75C6.5 3.33579 6.16421 3 5.75 3C5.33579 3 5 3.33579 5 3.75C5 4.08152 4.8683 4.39946 4.63388 4.63388C4.39946 4.8683 4.08152 5 3.75 5C3.33579 5 3 5.33579 3 5.75C3 6.16421 3.33579 6.5 3.75 6.5C4.08152 6.5 4.39946 6.6317 4.63388 6.86612C4.8683 7.10054 5 7.41848 5 7.75C5 8.16421 5.33579 8.5 5.75 8.5C6.16421 8.5 6.5 8.16421 6.5 7.75C6.5 7.41848 6.6317 7.10054 6.86612 6.86612C7.10054 6.6317 7.41848 6.5 7.75 6.5C8.16421 6.5 8.5 6.16421 8.5 5.75C8.5 5.33579 8.16421 5 7.75 5C7.41848 5 7.10054 4.8683 6.86612 4.63388C6.6317 4.39946 6.5 4.08152 6.5 3.75ZM5.69454 5.69454C5.71333 5.67576 5.73182 5.65673 5.75 5.63746C5.76818 5.65673 5.78667 5.67576 5.80546 5.69454C5.82424 5.71333 5.84327 5.73182 5.86254 5.75C5.84327 5.76818 5.82424 5.78667 5.80546 5.80546C5.78667 5.82424 5.76818 5.84327 5.75 5.86254C5.73182 5.84327 5.71333 5.82424 5.69454 5.80546C5.67576 5.78667 5.65673 5.76818 5.63746 5.75C5.65673 5.73182 5.67576 5.71333 5.69454 5.69454Z\"\n\t\t\t/>\n\t\t\t<path\n\t\t\t\tfillRule=\"evenodd\"\n\t\t\t\tclipRule=\"evenodd\"\n\t\t\t\td=\"M17.25 3.67188C16.3009 3.67188 15.3908 4.04889 14.7197 4.71997L13.7253 5.71433L13.7197 5.71991L13.7141 5.72555L4.21967 15.22C4.07902 15.3606 4 15.5514 4 15.7503V19.7503C4 20.1645 4.33579 20.5003 4.75 20.5003H8.75C8.94891 20.5003 9.13968 20.4213 9.28033 20.2806L19.7803 9.78063C20.4514 9.10955 20.8284 8.19936 20.8284 7.2503C20.8284 6.30124 20.4514 5.39106 19.7803 4.71997C19.1092 4.04889 18.1991 3.67188 17.25 3.67188ZM5.5 16.061L14.25 7.31093L17.1894 10.2503L8.43934 19.0003H5.5V16.061ZM15.3107 6.25027L18.25 9.18961L18.7197 8.71997C19.1095 8.33019 19.3284 7.80154 19.3284 7.2503C19.3284 6.69907 19.1095 6.17041 18.7197 5.78063C18.3299 5.39085 17.8012 5.17188 17.25 5.17188C16.6988 5.17188 16.1701 5.39085 15.7803 5.78063L15.3107 6.25027Z\"\n\t\t\t/>\n\t\t</SvgIcon>\n\t);\n} );\n\nexport default PencilSparklesIcon;\n"],"names":["React","SvgIcon"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,MAAM,kBAAqB,GAAAA,gBAAA,CAAM,UAA2C,CAAA,CAAE,OAAO,GAAS,KAAA;AAC7F,EAAA,sDACEC,wBAAQ,EAAA,EAAA,OAAA,EAAQ,WAAc,EAAA,GAAG,OAAQ,GACzC,EAAA,kBAAAD,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEH,kBAAAA,gBAAA,CAAA,aAAA;AAAA,IAAC,MAAA;AAAA,IAAA;AAAA,MACA,QAAS,EAAA,SAAA;AAAA,MACT,QAAS,EAAA,SAAA;AAAA,MACT,CAAE,EAAA;AAAA;AAAA,GAEJ,CAAA;AAEF,CAAE;;;;"}
@@ -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 ReloadIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default ReloadIcon;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const ReloadIcon = React.forwardRef((props, ref) => {
5
+ return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
6
+ "path",
7
+ {
8
+ fillRule: "evenodd",
9
+ clipRule: "evenodd",
10
+ d: "M18.2295 8.24989H15C14.5858 8.24989 14.25 8.58568 14.25 8.99989C14.25 9.4141 14.5858 9.74989 15 9.74989H19.4164C19.4276 9.75014 19.4389 9.75015 19.4502 9.74989H20C20.4142 9.74989 20.75 9.4141 20.75 8.99989V3.99989C20.75 3.58568 20.4142 3.24989 20 3.24989C19.5858 3.24989 19.25 3.58568 19.25 3.99989V7.05997C17.216 4.05724 13.4602 2.59135 9.82139 3.52648C8.28303 3.92219 6.88124 4.72923 5.76667 5.86098C4.65209 6.99273 3.86662 8.40653 3.49449 9.95076C3.12236 11.495 3.1776 13.1114 3.6543 14.6266C4.13101 16.1418 5.01118 17.4987 6.20042 18.5517C7.38967 19.6047 8.84313 20.3141 10.4049 20.6039C11.9667 20.8936 13.5779 20.7528 15.0657 20.1964C16.5535 19.64 17.8618 18.6892 18.8503 17.4458C19.8388 16.2024 20.4702 14.7134 20.6767 13.1384C20.7306 12.7277 20.4413 12.3511 20.0306 12.2972C19.6199 12.2434 19.2433 12.5327 19.1894 12.9434C19.0183 14.2483 18.4952 15.4821 17.6761 16.5123C16.8571 17.5426 15.7731 18.3304 14.5403 18.7914C13.3076 19.2524 11.9726 19.3691 10.6785 19.129C9.38447 18.889 8.18018 18.3012 7.1948 17.4287C6.20943 16.5562 5.48014 15.4319 5.08516 14.1765C4.69018 12.921 4.6444 11.5817 4.95274 10.3022C5.26108 9.02267 5.9119 7.85123 6.83541 6.9135C7.75887 5.9758 8.92032 5.30712 10.1949 4.97924M10.1949 4.97924C13.3573 4.1666 16.6106 5.53614 18.2295 8.24989L10.1949 4.97924Z"
11
+ }
12
+ ));
13
+ });
14
+
15
+ export { ReloadIcon as default };
16
+ //# sourceMappingURL=index.esm.js.map