@elementor/icons 1.45.0 → 1.47.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.
- package/CurrentLocationIcon/index.d.ts +4 -0
- package/CurrentLocationIcon/index.js +23 -0
- package/RotateClockwise2Icon/index.d.ts +4 -0
- package/RotateClockwise2Icon/index.js +9 -0
- package/RotateClockwiseIcon/index.d.ts +4 -0
- package/RotateClockwiseIcon/index.js +9 -0
- package/cjs/CurrentLocationIcon/index.d.ts +4 -0
- package/cjs/CurrentLocationIcon/index.js +48 -0
- package/cjs/RotateClockwise2Icon/index.d.ts +4 -0
- package/cjs/RotateClockwise2Icon/index.js +34 -0
- package/cjs/RotateClockwiseIcon/index.d.ts +4 -0
- package/cjs/RotateClockwiseIcon/index.js +34 -0
- package/cjs/index.d.ts +3 -0
- package/cjs/index.js +18 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/package.json +1 -1
|
@@ -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,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const RotateClockwise2Icon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement("path", { d: "M14.8528 5.30087C13.076 4.54426 11.0715 4.52446 9.28015 5.24581C8.89592 5.40053 8.45901 5.21448 8.30429 4.83025C8.14956 4.44602 8.33562 4.00911 8.71985 3.85438C10.8802 2.98443 13.2977 3.00832 15.4405 3.92079C17.5832 4.83326 19.2758 6.55957 20.1457 8.71994C21.0157 10.8803 20.9918 13.2978 20.0793 15.4406C19.4176 16.9946 18.3278 18.3117 16.9548 19.2501H20C20.4142 19.2501 20.75 19.5859 20.75 20.0001C20.75 20.4143 20.4142 20.7501 20 20.7501H15C14.5858 20.7501 14.25 20.4143 14.25 20.0001V19.4676C14.2497 19.4561 14.2497 19.4446 14.25 19.4331V15.0001C14.25 14.5859 14.5858 14.2501 15 14.2501C15.4142 14.2501 15.75 14.5859 15.75 15.0001V18.2416C17.0573 17.4561 18.0941 16.2739 18.6992 14.8529C19.4558 13.0761 19.4756 11.0716 18.7543 9.28025C18.0329 7.4889 16.6295 6.05747 14.8528 5.30087Z" }), /* @__PURE__ */ React.createElement("path", { d: "M5.62988 6.4101C6.0441 6.4101 6.37988 6.74588 6.37988 7.1601V7.1701C6.37988 7.58431 6.0441 7.9201 5.62988 7.9201C5.21567 7.9201 4.87988 7.58431 4.87988 7.1701V7.1601C4.87988 6.74588 5.21567 6.4101 5.62988 6.4101Z" }), /* @__PURE__ */ React.createElement("path", { d: "M4.06006 10.2501C4.47427 10.2501 4.81006 10.5859 4.81006 11.0001V11.0101C4.81006 11.4243 4.47427 11.7601 4.06006 11.7601C3.64585 11.7601 3.31006 11.4243 3.31006 11.0101V11.0001C3.31006 10.5859 3.64585 10.2501 4.06006 10.2501Z" }), /* @__PURE__ */ React.createElement("path", { d: "M4.62988 14.3501C5.0441 14.3501 5.37988 14.6859 5.37988 15.1001V15.1101C5.37988 15.5243 5.0441 15.8601 4.62988 15.8601C4.21567 15.8601 3.87988 15.5243 3.87988 15.1101V15.1001C3.87988 14.6859 4.21567 14.3501 4.62988 14.3501Z" }), /* @__PURE__ */ React.createElement("path", { d: "M7.16016 17.6201C7.57437 17.6201 7.91016 17.9559 7.91016 18.3701V18.3801C7.91016 18.7943 7.57437 19.1301 7.16016 19.1301C6.74594 19.1301 6.41016 18.7943 6.41016 18.3801V18.3701C6.41016 17.9559 6.74594 17.6201 7.16016 17.6201Z" }), /* @__PURE__ */ React.createElement("path", { d: "M11 19.1901C11.4142 19.1901 11.75 19.5259 11.75 19.9401V19.9501C11.75 20.3643 11.4142 20.7001 11 20.7001C10.5858 20.7001 10.25 20.3643 10.25 19.9501V19.9401C10.25 19.5259 10.5858 19.1901 11 19.1901Z" }));
|
|
6
|
+
});
|
|
7
|
+
var RotateClockwise2Icon_default = RotateClockwise2Icon;
|
|
8
|
+
|
|
9
|
+
export { RotateClockwise2Icon_default as default };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const RotateClockwiseIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement("path", { d: "M12.0038 4.78958C10.2405 4.78431 8.53568 5.42187 7.20852 6.58292C5.88135 7.74397 5.02283 9.3489 4.79365 11.0973C4.73982 11.508 4.36324 11.7973 3.95254 11.7435C3.54184 11.6896 3.25254 11.313 3.30637 10.9023C3.58296 8.79222 4.61912 6.85522 6.22086 5.45396C7.82261 4.0527 9.88015 3.28323 12.0083 3.28959C14.1365 3.29595 16.1894 4.07771 17.7827 5.48853C19.3761 6.89935 20.4006 8.8425 20.6646 10.9542C20.9286 13.066 20.4138 15.2016 19.2168 16.9612C18.0198 18.7208 16.2225 19.9838 14.1614 20.5138C12.1002 21.0439 9.9166 20.8045 8.0192 19.8407C6.72202 19.1817 5.61942 18.215 4.80001 17.0375V19.9998C4.80001 20.414 4.46422 20.7498 4.05001 20.7498C3.6358 20.7498 3.30001 20.414 3.30001 19.9998V14.9998C3.30001 14.5856 3.6358 14.2498 4.05001 14.2498H4.53253C4.54406 14.2496 4.55557 14.2496 4.56704 14.2498H9.05001C9.46422 14.2498 9.80001 14.5856 9.80001 14.9998C9.80001 15.414 9.46422 15.7498 9.05001 15.7498H5.75346C6.4511 16.921 7.4694 17.8789 8.69857 18.5033C10.2707 19.302 12.08 19.5003 13.7878 19.0611C15.4956 18.6219 16.9848 17.5754 17.9766 16.1175C18.9684 14.6595 19.3949 12.89 19.1762 11.1403C18.9575 9.39057 18.1085 7.78053 16.7883 6.61156C15.4682 5.4426 13.7672 4.79486 12.0038 4.78958Z" }));
|
|
6
|
+
});
|
|
7
|
+
var RotateClockwiseIcon_default = RotateClockwiseIcon;
|
|
8
|
+
|
|
9
|
+
export { RotateClockwiseIcon_default as default };
|
|
@@ -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;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 RotateClockwise2Icon = 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("path", { d: "M14.8528 5.30087C13.076 4.54426 11.0715 4.52446 9.28015 5.24581C8.89592 5.40053 8.45901 5.21448 8.30429 4.83025C8.14956 4.44602 8.33562 4.00911 8.71985 3.85438C10.8802 2.98443 13.2977 3.00832 15.4405 3.92079C17.5832 4.83326 19.2758 6.55957 20.1457 8.71994C21.0157 10.8803 20.9918 13.2978 20.0793 15.4406C19.4176 16.9946 18.3278 18.3117 16.9548 19.2501H20C20.4142 19.2501 20.75 19.5859 20.75 20.0001C20.75 20.4143 20.4142 20.7501 20 20.7501H15C14.5858 20.7501 14.25 20.4143 14.25 20.0001V19.4676C14.2497 19.4561 14.2497 19.4446 14.25 19.4331V15.0001C14.25 14.5859 14.5858 14.2501 15 14.2501C15.4142 14.2501 15.75 14.5859 15.75 15.0001V18.2416C17.0573 17.4561 18.0941 16.2739 18.6992 14.8529C19.4558 13.0761 19.4756 11.0716 18.7543 9.28025C18.0329 7.4889 16.6295 6.05747 14.8528 5.30087Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M5.62988 6.4101C6.0441 6.4101 6.37988 6.74588 6.37988 7.1601V7.1701C6.37988 7.58431 6.0441 7.9201 5.62988 7.9201C5.21567 7.9201 4.87988 7.58431 4.87988 7.1701V7.1601C4.87988 6.74588 5.21567 6.4101 5.62988 6.4101Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M4.06006 10.2501C4.47427 10.2501 4.81006 10.5859 4.81006 11.0001V11.0101C4.81006 11.4243 4.47427 11.7601 4.06006 11.7601C3.64585 11.7601 3.31006 11.4243 3.31006 11.0101V11.0001C3.31006 10.5859 3.64585 10.2501 4.06006 10.2501Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M4.62988 14.3501C5.0441 14.3501 5.37988 14.6859 5.37988 15.1001V15.1101C5.37988 15.5243 5.0441 15.8601 4.62988 15.8601C4.21567 15.8601 3.87988 15.5243 3.87988 15.1101V15.1001C3.87988 14.6859 4.21567 14.3501 4.62988 14.3501Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M7.16016 17.6201C7.57437 17.6201 7.91016 17.9559 7.91016 18.3701V18.3801C7.91016 18.7943 7.57437 19.1301 7.16016 19.1301C6.74594 19.1301 6.41016 18.7943 6.41016 18.3801V18.3701C6.41016 17.9559 6.74594 17.6201 7.16016 17.6201Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M11 19.1901C11.4142 19.1901 11.75 19.5259 11.75 19.9401V19.9501C11.75 20.3643 11.4142 20.7001 11 20.7001C10.5858 20.7001 10.25 20.3643 10.25 19.9501V19.9401C10.25 19.5259 10.5858 19.1901 11 19.1901Z" }));
|
|
31
|
+
});
|
|
32
|
+
var RotateClockwise2Icon_default = RotateClockwise2Icon;
|
|
33
|
+
|
|
34
|
+
module.exports = RotateClockwise2Icon_default;
|
|
@@ -0,0 +1,34 @@
|
|
|
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 RotateClockwiseIcon = 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("path", { d: "M12.0038 4.78958C10.2405 4.78431 8.53568 5.42187 7.20852 6.58292C5.88135 7.74397 5.02283 9.3489 4.79365 11.0973C4.73982 11.508 4.36324 11.7973 3.95254 11.7435C3.54184 11.6896 3.25254 11.313 3.30637 10.9023C3.58296 8.79222 4.61912 6.85522 6.22086 5.45396C7.82261 4.0527 9.88015 3.28323 12.0083 3.28959C14.1365 3.29595 16.1894 4.07771 17.7827 5.48853C19.3761 6.89935 20.4006 8.8425 20.6646 10.9542C20.9286 13.066 20.4138 15.2016 19.2168 16.9612C18.0198 18.7208 16.2225 19.9838 14.1614 20.5138C12.1002 21.0439 9.9166 20.8045 8.0192 19.8407C6.72202 19.1817 5.61942 18.215 4.80001 17.0375V19.9998C4.80001 20.414 4.46422 20.7498 4.05001 20.7498C3.6358 20.7498 3.30001 20.414 3.30001 19.9998V14.9998C3.30001 14.5856 3.6358 14.2498 4.05001 14.2498H4.53253C4.54406 14.2496 4.55557 14.2496 4.56704 14.2498H9.05001C9.46422 14.2498 9.80001 14.5856 9.80001 14.9998C9.80001 15.414 9.46422 15.7498 9.05001 15.7498H5.75346C6.4511 16.921 7.4694 17.8789 8.69857 18.5033C10.2707 19.302 12.08 19.5003 13.7878 19.0611C15.4956 18.6219 16.9848 17.5754 17.9766 16.1175C18.9684 14.6595 19.3949 12.89 19.1762 11.1403C18.9575 9.39057 18.1085 7.78053 16.7883 6.61156C15.4682 5.4426 13.7672 4.79486 12.0038 4.78958Z" }));
|
|
31
|
+
});
|
|
32
|
+
var RotateClockwiseIcon_default = RotateClockwiseIcon;
|
|
33
|
+
|
|
34
|
+
module.exports = RotateClockwiseIcon_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';
|
|
@@ -177,6 +178,8 @@ export { default as ReloadIcon } from './ReloadIcon';
|
|
|
177
178
|
export { default as RepeatIcon } from './RepeatIcon';
|
|
178
179
|
export { default as ResetIcon } from './ResetIcon';
|
|
179
180
|
export { default as RocketIcon } from './RocketIcon';
|
|
181
|
+
export { default as RotateClockwise2Icon } from './RotateClockwise2Icon';
|
|
182
|
+
export { default as RotateClockwiseIcon } from './RotateClockwiseIcon';
|
|
180
183
|
export { default as RotateIcon } from './RotateIcon';
|
|
181
184
|
export { default as RouterIcon } from './RouterIcon';
|
|
182
185
|
export { default as SFTPIcon } from './SFTPIcon';
|
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');
|
|
@@ -179,6 +180,8 @@ var ReloadIcon = require('./ReloadIcon');
|
|
|
179
180
|
var RepeatIcon = require('./RepeatIcon');
|
|
180
181
|
var ResetIcon = require('./ResetIcon');
|
|
181
182
|
var RocketIcon = require('./RocketIcon');
|
|
183
|
+
var RotateClockwise2Icon = require('./RotateClockwise2Icon');
|
|
184
|
+
var RotateClockwiseIcon = require('./RotateClockwiseIcon');
|
|
182
185
|
var RotateIcon = require('./RotateIcon');
|
|
183
186
|
var RouterIcon = require('./RouterIcon');
|
|
184
187
|
var SFTPIcon = require('./SFTPIcon');
|
|
@@ -311,6 +314,7 @@ var CopyPageIcon__default = /*#__PURE__*/_interopDefault(CopyPageIcon);
|
|
|
311
314
|
var CornerUpRightIcon__default = /*#__PURE__*/_interopDefault(CornerUpRightIcon);
|
|
312
315
|
var CreditCardIcon__default = /*#__PURE__*/_interopDefault(CreditCardIcon);
|
|
313
316
|
var CrownIcon__default = /*#__PURE__*/_interopDefault(CrownIcon);
|
|
317
|
+
var CurrentLocationIcon__default = /*#__PURE__*/_interopDefault(CurrentLocationIcon);
|
|
314
318
|
var DatabaseIcon__default = /*#__PURE__*/_interopDefault(DatabaseIcon);
|
|
315
319
|
var DesktopIcon__default = /*#__PURE__*/_interopDefault(DesktopIcon);
|
|
316
320
|
var DetachIcon__default = /*#__PURE__*/_interopDefault(DetachIcon);
|
|
@@ -416,6 +420,8 @@ var ReloadIcon__default = /*#__PURE__*/_interopDefault(ReloadIcon);
|
|
|
416
420
|
var RepeatIcon__default = /*#__PURE__*/_interopDefault(RepeatIcon);
|
|
417
421
|
var ResetIcon__default = /*#__PURE__*/_interopDefault(ResetIcon);
|
|
418
422
|
var RocketIcon__default = /*#__PURE__*/_interopDefault(RocketIcon);
|
|
423
|
+
var RotateClockwise2Icon__default = /*#__PURE__*/_interopDefault(RotateClockwise2Icon);
|
|
424
|
+
var RotateClockwiseIcon__default = /*#__PURE__*/_interopDefault(RotateClockwiseIcon);
|
|
419
425
|
var RotateIcon__default = /*#__PURE__*/_interopDefault(RotateIcon);
|
|
420
426
|
var RouterIcon__default = /*#__PURE__*/_interopDefault(RouterIcon);
|
|
421
427
|
var SFTPIcon__default = /*#__PURE__*/_interopDefault(SFTPIcon);
|
|
@@ -770,6 +776,10 @@ Object.defineProperty(exports, "CrownIcon", {
|
|
|
770
776
|
enumerable: true,
|
|
771
777
|
get: function () { return CrownIcon__default.default; }
|
|
772
778
|
});
|
|
779
|
+
Object.defineProperty(exports, "CurrentLocationIcon", {
|
|
780
|
+
enumerable: true,
|
|
781
|
+
get: function () { return CurrentLocationIcon__default.default; }
|
|
782
|
+
});
|
|
773
783
|
Object.defineProperty(exports, "DatabaseIcon", {
|
|
774
784
|
enumerable: true,
|
|
775
785
|
get: function () { return DatabaseIcon__default.default; }
|
|
@@ -1190,6 +1200,14 @@ Object.defineProperty(exports, "RocketIcon", {
|
|
|
1190
1200
|
enumerable: true,
|
|
1191
1201
|
get: function () { return RocketIcon__default.default; }
|
|
1192
1202
|
});
|
|
1203
|
+
Object.defineProperty(exports, "RotateClockwise2Icon", {
|
|
1204
|
+
enumerable: true,
|
|
1205
|
+
get: function () { return RotateClockwise2Icon__default.default; }
|
|
1206
|
+
});
|
|
1207
|
+
Object.defineProperty(exports, "RotateClockwiseIcon", {
|
|
1208
|
+
enumerable: true,
|
|
1209
|
+
get: function () { return RotateClockwiseIcon__default.default; }
|
|
1210
|
+
});
|
|
1193
1211
|
Object.defineProperty(exports, "RotateIcon", {
|
|
1194
1212
|
enumerable: true,
|
|
1195
1213
|
get: function () { return RotateIcon__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';
|
|
@@ -177,6 +178,8 @@ export { default as ReloadIcon } from './ReloadIcon';
|
|
|
177
178
|
export { default as RepeatIcon } from './RepeatIcon';
|
|
178
179
|
export { default as ResetIcon } from './ResetIcon';
|
|
179
180
|
export { default as RocketIcon } from './RocketIcon';
|
|
181
|
+
export { default as RotateClockwise2Icon } from './RotateClockwise2Icon';
|
|
182
|
+
export { default as RotateClockwiseIcon } from './RotateClockwiseIcon';
|
|
180
183
|
export { default as RotateIcon } from './RotateIcon';
|
|
181
184
|
export { default as RouterIcon } from './RouterIcon';
|
|
182
185
|
export { default as SFTPIcon } from './SFTPIcon';
|
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';
|
|
@@ -177,6 +178,8 @@ export { default as ReloadIcon } from './ReloadIcon';
|
|
|
177
178
|
export { default as RepeatIcon } from './RepeatIcon';
|
|
178
179
|
export { default as ResetIcon } from './ResetIcon';
|
|
179
180
|
export { default as RocketIcon } from './RocketIcon';
|
|
181
|
+
export { default as RotateClockwise2Icon } from './RotateClockwise2Icon';
|
|
182
|
+
export { default as RotateClockwiseIcon } from './RotateClockwiseIcon';
|
|
180
183
|
export { default as RotateIcon } from './RotateIcon';
|
|
181
184
|
export { default as RouterIcon } from './RouterIcon';
|
|
182
185
|
export { default as SFTPIcon } from './SFTPIcon';
|