@elementor/icons 1.45.0 → 1.46.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 CurrentLocationIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default CurrentLocationIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const CurrentLocationIcon = 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: "M12 8.25C12.9946 8.25 13.9481 8.64537 14.6514 9.34863C15.3546 10.0519 15.75 11.0054 15.75 12C15.75 12.9946 15.3546 13.9481 14.6514 14.6514C13.9481 15.3546 12.9946 15.75 12 15.75C11.0054 15.75 10.0519 15.3546 9.34863 14.6514C8.64537 13.9481 8.25 12.9946 8.25 12C8.25 11.0054 8.64537 10.0519 9.34863 9.34863C10.0519 8.64537 11.0054 8.25 12 8.25ZM12 9.75C11.4033 9.75 10.8311 9.98722 10.4092 10.4092C9.98722 10.8311 9.75 11.4033 9.75 12C9.75 12.5967 9.98722 13.1689 10.4092 13.5908C10.8311 14.0128 11.4033 14.25 12 14.25C12.5967 14.25 13.1689 14.0128 13.5908 13.5908C14.0128 13.1689 14.25 12.5967 14.25 12C14.25 11.4033 14.0128 10.8311 13.5908 10.4092C13.1689 9.98722 12.5967 9.75 12 9.75Z"
11
+ }
12
+ ), /* @__PURE__ */ React.createElement(
13
+ "path",
14
+ {
15
+ fillRule: "evenodd",
16
+ clipRule: "evenodd",
17
+ d: "M12 1.25C12.4142 1.25 12.75 1.58579 12.75 2V3.28418C14.7958 3.46014 16.7243 4.34931 18.1875 5.8125C19.6507 7.27569 20.5399 9.20422 20.7158 11.25H22C22.4142 11.25 22.75 11.5858 22.75 12C22.75 12.4142 22.4142 12.75 22 12.75H20.7158C20.5399 14.7958 19.6507 16.7243 18.1875 18.1875C16.7243 19.6507 14.7957 20.5389 12.75 20.7148V22C12.75 22.4142 12.4142 22.75 12 22.75C11.5858 22.75 11.25 22.4142 11.25 22V20.7148C9.20425 20.5389 7.27567 19.6507 5.8125 18.1875C4.34931 16.7243 3.46014 14.7958 3.28418 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H3.28418C3.46014 9.20422 4.34931 7.27569 5.8125 5.8125C7.27569 4.34931 9.20422 3.46014 11.25 3.28418V2C11.25 1.58579 11.5858 1.25 12 1.25ZM12 4.75C10.0772 4.75 8.23269 5.51341 6.87305 6.87305C5.51341 8.23269 4.75 10.0772 4.75 12C4.75 13.9228 5.51341 15.7673 6.87305 17.127C8.23269 18.4866 10.0772 19.25 12 19.25L12.3594 19.2412C14.1514 19.1523 15.8523 18.4016 17.127 17.127C18.4866 15.7673 19.25 13.9228 19.25 12L19.2412 11.6406C19.1523 9.84865 18.4016 8.14774 17.127 6.87305C15.7673 5.51341 13.9228 4.75 12 4.75Z"
18
+ }
19
+ ));
20
+ });
21
+ var CurrentLocationIcon_default = CurrentLocationIcon;
22
+
23
+ export { CurrentLocationIcon_default as default };
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SvgIconProps } from '@elementor/ui/SvgIcon';
3
+ declare const CurrentLocationIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default CurrentLocationIcon;
@@ -0,0 +1,48 @@
1
+ 'use strict';
2
+
3
+ var React = require('react');
4
+ var SvgIcon = require('@elementor/ui/SvgIcon');
5
+
6
+ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
7
+
8
+ function _interopNamespace(e) {
9
+ if (e && e.__esModule) return e;
10
+ var n = Object.create(null);
11
+ if (e) {
12
+ Object.keys(e).forEach(function (k) {
13
+ if (k !== 'default') {
14
+ var d = Object.getOwnPropertyDescriptor(e, k);
15
+ Object.defineProperty(n, k, d.get ? d : {
16
+ enumerable: true,
17
+ get: function () { return e[k]; }
18
+ });
19
+ }
20
+ });
21
+ }
22
+ n.default = e;
23
+ return Object.freeze(n);
24
+ }
25
+
26
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
27
+ var SvgIcon__default = /*#__PURE__*/_interopDefault(SvgIcon);
28
+
29
+ const CurrentLocationIcon = React__namespace.forwardRef((props, ref) => {
30
+ return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
31
+ "path",
32
+ {
33
+ fillRule: "evenodd",
34
+ clipRule: "evenodd",
35
+ d: "M12 8.25C12.9946 8.25 13.9481 8.64537 14.6514 9.34863C15.3546 10.0519 15.75 11.0054 15.75 12C15.75 12.9946 15.3546 13.9481 14.6514 14.6514C13.9481 15.3546 12.9946 15.75 12 15.75C11.0054 15.75 10.0519 15.3546 9.34863 14.6514C8.64537 13.9481 8.25 12.9946 8.25 12C8.25 11.0054 8.64537 10.0519 9.34863 9.34863C10.0519 8.64537 11.0054 8.25 12 8.25ZM12 9.75C11.4033 9.75 10.8311 9.98722 10.4092 10.4092C9.98722 10.8311 9.75 11.4033 9.75 12C9.75 12.5967 9.98722 13.1689 10.4092 13.5908C10.8311 14.0128 11.4033 14.25 12 14.25C12.5967 14.25 13.1689 14.0128 13.5908 13.5908C14.0128 13.1689 14.25 12.5967 14.25 12C14.25 11.4033 14.0128 10.8311 13.5908 10.4092C13.1689 9.98722 12.5967 9.75 12 9.75Z"
36
+ }
37
+ ), /* @__PURE__ */ React__namespace.createElement(
38
+ "path",
39
+ {
40
+ fillRule: "evenodd",
41
+ clipRule: "evenodd",
42
+ d: "M12 1.25C12.4142 1.25 12.75 1.58579 12.75 2V3.28418C14.7958 3.46014 16.7243 4.34931 18.1875 5.8125C19.6507 7.27569 20.5399 9.20422 20.7158 11.25H22C22.4142 11.25 22.75 11.5858 22.75 12C22.75 12.4142 22.4142 12.75 22 12.75H20.7158C20.5399 14.7958 19.6507 16.7243 18.1875 18.1875C16.7243 19.6507 14.7957 20.5389 12.75 20.7148V22C12.75 22.4142 12.4142 22.75 12 22.75C11.5858 22.75 11.25 22.4142 11.25 22V20.7148C9.20425 20.5389 7.27567 19.6507 5.8125 18.1875C4.34931 16.7243 3.46014 14.7958 3.28418 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H3.28418C3.46014 9.20422 4.34931 7.27569 5.8125 5.8125C7.27569 4.34931 9.20422 3.46014 11.25 3.28418V2C11.25 1.58579 11.5858 1.25 12 1.25ZM12 4.75C10.0772 4.75 8.23269 5.51341 6.87305 6.87305C5.51341 8.23269 4.75 10.0772 4.75 12C4.75 13.9228 5.51341 15.7673 6.87305 17.127C8.23269 18.4866 10.0772 19.25 12 19.25L12.3594 19.2412C14.1514 19.1523 15.8523 18.4016 17.127 17.127C18.4866 15.7673 19.25 13.9228 19.25 12L19.2412 11.6406C19.1523 9.84865 18.4016 8.14774 17.127 6.87305C15.7673 5.51341 13.9228 4.75 12 4.75Z"
43
+ }
44
+ ));
45
+ });
46
+ var CurrentLocationIcon_default = CurrentLocationIcon;
47
+
48
+ module.exports = CurrentLocationIcon_default;
package/cjs/index.d.ts CHANGED
@@ -72,6 +72,7 @@ export { default as CopyPageIcon } from './CopyPageIcon';
72
72
  export { default as CornerUpRightIcon } from './CornerUpRightIcon';
73
73
  export { default as CreditCardIcon } from './CreditCardIcon';
74
74
  export { default as CrownIcon } from './CrownIcon';
75
+ export { default as CurrentLocationIcon } from './CurrentLocationIcon';
75
76
  export { default as DatabaseIcon } from './DatabaseIcon';
76
77
  export { default as DesktopIcon } from './DesktopIcon';
77
78
  export { default as DetachIcon } from './DetachIcon';
package/cjs/index.js CHANGED
@@ -74,6 +74,7 @@ var CopyPageIcon = require('./CopyPageIcon');
74
74
  var CornerUpRightIcon = require('./CornerUpRightIcon');
75
75
  var CreditCardIcon = require('./CreditCardIcon');
76
76
  var CrownIcon = require('./CrownIcon');
77
+ var CurrentLocationIcon = require('./CurrentLocationIcon');
77
78
  var DatabaseIcon = require('./DatabaseIcon');
78
79
  var DesktopIcon = require('./DesktopIcon');
79
80
  var DetachIcon = require('./DetachIcon');
@@ -311,6 +312,7 @@ var CopyPageIcon__default = /*#__PURE__*/_interopDefault(CopyPageIcon);
311
312
  var CornerUpRightIcon__default = /*#__PURE__*/_interopDefault(CornerUpRightIcon);
312
313
  var CreditCardIcon__default = /*#__PURE__*/_interopDefault(CreditCardIcon);
313
314
  var CrownIcon__default = /*#__PURE__*/_interopDefault(CrownIcon);
315
+ var CurrentLocationIcon__default = /*#__PURE__*/_interopDefault(CurrentLocationIcon);
314
316
  var DatabaseIcon__default = /*#__PURE__*/_interopDefault(DatabaseIcon);
315
317
  var DesktopIcon__default = /*#__PURE__*/_interopDefault(DesktopIcon);
316
318
  var DetachIcon__default = /*#__PURE__*/_interopDefault(DetachIcon);
@@ -770,6 +772,10 @@ Object.defineProperty(exports, "CrownIcon", {
770
772
  enumerable: true,
771
773
  get: function () { return CrownIcon__default.default; }
772
774
  });
775
+ Object.defineProperty(exports, "CurrentLocationIcon", {
776
+ enumerable: true,
777
+ get: function () { return CurrentLocationIcon__default.default; }
778
+ });
773
779
  Object.defineProperty(exports, "DatabaseIcon", {
774
780
  enumerable: true,
775
781
  get: function () { return DatabaseIcon__default.default; }
package/index.d.ts CHANGED
@@ -72,6 +72,7 @@ export { default as CopyPageIcon } from './CopyPageIcon';
72
72
  export { default as CornerUpRightIcon } from './CornerUpRightIcon';
73
73
  export { default as CreditCardIcon } from './CreditCardIcon';
74
74
  export { default as CrownIcon } from './CrownIcon';
75
+ export { default as CurrentLocationIcon } from './CurrentLocationIcon';
75
76
  export { default as DatabaseIcon } from './DatabaseIcon';
76
77
  export { default as DesktopIcon } from './DesktopIcon';
77
78
  export { default as DetachIcon } from './DetachIcon';
package/index.js CHANGED
@@ -72,6 +72,7 @@ export { default as CopyPageIcon } from './CopyPageIcon';
72
72
  export { default as CornerUpRightIcon } from './CornerUpRightIcon';
73
73
  export { default as CreditCardIcon } from './CreditCardIcon';
74
74
  export { default as CrownIcon } from './CrownIcon';
75
+ export { default as CurrentLocationIcon } from './CurrentLocationIcon';
75
76
  export { default as DatabaseIcon } from './DatabaseIcon';
76
77
  export { default as DesktopIcon } from './DesktopIcon';
77
78
  export { default as DetachIcon } from './DetachIcon';
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "require": "./cjs/*/index.js"
17
17
  }
18
18
  },
19
- "version": "1.45.0",
19
+ "version": "1.46.0",
20
20
  "description": "Elementor Icons Library",
21
21
  "author": "Elementor Team",
22
22
  "homepage": "https://elementor.github.io/elementor-ui/",