@elementor/icons 1.47.0 → 1.49.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/CrownFilledIcon/index.d.ts +4 -0
- package/CrownFilledIcon/index.js +16 -0
- package/StarFilledIcon/index.d.ts +4 -0
- package/StarFilledIcon/index.js +17 -0
- package/cjs/CrownFilledIcon/index.d.ts +4 -0
- package/cjs/CrownFilledIcon/index.js +41 -0
- package/cjs/StarFilledIcon/index.d.ts +4 -0
- package/cjs/StarFilledIcon/index.js +42 -0
- package/cjs/index.d.ts +2 -0
- package/cjs/index.js +12 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const CrownFilledIcon = 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 5.25C12.2508 5.25 12.485 5.37533 12.6241 5.58397L16.1703 10.9033L20.5315 7.41435C20.7777 7.21743 21.1207 7.19544 21.39 7.35933C21.6592 7.52321 21.7973 7.83798 21.7355 8.14709L19.7355 18.1471C19.6654 18.4977 19.3576 18.75 19 18.75H5.00004C4.64253 18.75 4.33472 18.4977 4.26461 18.1471L2.2646 8.14709C2.20278 7.83798 2.34084 7.52321 2.61012 7.35933C2.8794 7.19544 3.22241 7.21743 3.46856 7.41435L7.82977 10.9033L11.376 5.58397C11.5151 5.37533 11.7493 5.25 12 5.25Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
var CrownFilledIcon_default = CrownFilledIcon;
|
|
15
|
+
|
|
16
|
+
export { CrownFilledIcon_default as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
3
|
+
|
|
4
|
+
const StarFilledIcon = React.forwardRef((props, ref) => {
|
|
5
|
+
return /* @__PURE__ */ React.createElement(SvgIcon, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React.createElement(
|
|
6
|
+
"path",
|
|
7
|
+
{
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
fillRule: "evenodd",
|
|
10
|
+
clipRule: "evenodd",
|
|
11
|
+
d: "M12 2C12.2659 2 12.5088 2.15027 12.6264 2.38762L15.3383 7.85709L21.4016 8.73178C21.6649 8.76976 21.8837 8.95331 21.9658 9.20518C22.048 9.45705 21.9793 9.73351 21.7887 9.91822L17.3949 14.1754L18.4309 20.1871C18.4759 20.4481 18.368 20.7118 18.1527 20.8674C17.9374 21.0229 17.652 21.0433 17.4167 20.9198L12.0062 18.0819L6.58274 20.9201C6.34738 21.0433 6.06216 21.0228 5.84703 20.8672C5.6319 20.7116 5.52417 20.448 5.56912 20.1871L6.60515 14.1754L2.21133 9.91822C2.02069 9.73351 1.95201 9.45705 2.03418 9.20518C2.11635 8.95331 2.33511 8.76976 2.59841 8.73178L8.66173 7.85709L11.3736 2.38762C11.4912 2.15027 11.7341 2 12 2Z"
|
|
12
|
+
}
|
|
13
|
+
));
|
|
14
|
+
});
|
|
15
|
+
var StarFilledIcon_default = StarFilledIcon;
|
|
16
|
+
|
|
17
|
+
export { StarFilledIcon_default as default };
|
|
@@ -0,0 +1,41 @@
|
|
|
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 CrownFilledIcon = 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 5.25C12.2508 5.25 12.485 5.37533 12.6241 5.58397L16.1703 10.9033L20.5315 7.41435C20.7777 7.21743 21.1207 7.19544 21.39 7.35933C21.6592 7.52321 21.7973 7.83798 21.7355 8.14709L19.7355 18.1471C19.6654 18.4977 19.3576 18.75 19 18.75H5.00004C4.64253 18.75 4.33472 18.4977 4.26461 18.1471L2.2646 8.14709C2.20278 7.83798 2.34084 7.52321 2.61012 7.35933C2.8794 7.19544 3.22241 7.21743 3.46856 7.41435L7.82977 10.9033L11.376 5.58397C11.5151 5.37533 11.7493 5.25 12 5.25Z"
|
|
36
|
+
}
|
|
37
|
+
));
|
|
38
|
+
});
|
|
39
|
+
var CrownFilledIcon_default = CrownFilledIcon;
|
|
40
|
+
|
|
41
|
+
module.exports = CrownFilledIcon_default;
|
|
@@ -0,0 +1,42 @@
|
|
|
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 StarFilledIcon = 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
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
fillRule: "evenodd",
|
|
35
|
+
clipRule: "evenodd",
|
|
36
|
+
d: "M12 2C12.2659 2 12.5088 2.15027 12.6264 2.38762L15.3383 7.85709L21.4016 8.73178C21.6649 8.76976 21.8837 8.95331 21.9658 9.20518C22.048 9.45705 21.9793 9.73351 21.7887 9.91822L17.3949 14.1754L18.4309 20.1871C18.4759 20.4481 18.368 20.7118 18.1527 20.8674C17.9374 21.0229 17.652 21.0433 17.4167 20.9198L12.0062 18.0819L6.58274 20.9201C6.34738 21.0433 6.06216 21.0228 5.84703 20.8672C5.6319 20.7116 5.52417 20.448 5.56912 20.1871L6.60515 14.1754L2.21133 9.91822C2.02069 9.73351 1.95201 9.45705 2.03418 9.20518C2.11635 8.95331 2.33511 8.76976 2.59841 8.73178L8.66173 7.85709L11.3736 2.38762C11.4912 2.15027 11.7341 2 12 2Z"
|
|
37
|
+
}
|
|
38
|
+
));
|
|
39
|
+
});
|
|
40
|
+
var StarFilledIcon_default = StarFilledIcon;
|
|
41
|
+
|
|
42
|
+
module.exports = StarFilledIcon_default;
|
package/cjs/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export { default as CopyIcon } from './CopyIcon';
|
|
|
71
71
|
export { default as CopyPageIcon } from './CopyPageIcon';
|
|
72
72
|
export { default as CornerUpRightIcon } from './CornerUpRightIcon';
|
|
73
73
|
export { default as CreditCardIcon } from './CreditCardIcon';
|
|
74
|
+
export { default as CrownFilledIcon } from './CrownFilledIcon';
|
|
74
75
|
export { default as CrownIcon } from './CrownIcon';
|
|
75
76
|
export { default as CurrentLocationIcon } from './CurrentLocationIcon';
|
|
76
77
|
export { default as DatabaseIcon } from './DatabaseIcon';
|
|
@@ -205,6 +206,7 @@ export { default as SiteLockOpenIcon } from './SiteLockOpenIcon';
|
|
|
205
206
|
export { default as SkewXIcon } from './SkewXIcon';
|
|
206
207
|
export { default as SocialIcon } from './SocialIcon';
|
|
207
208
|
export { default as SpeakerphoneIcon } from './SpeakerphoneIcon';
|
|
209
|
+
export { default as StarFilledIcon } from './StarFilledIcon';
|
|
208
210
|
export { default as StarIcon } from './StarIcon';
|
|
209
211
|
export { default as StarOffIcon } from './StarOffIcon';
|
|
210
212
|
export { default as StrikethroughIcon } from './StrikethroughIcon';
|
package/cjs/index.js
CHANGED
|
@@ -73,6 +73,7 @@ var CopyIcon = require('./CopyIcon');
|
|
|
73
73
|
var CopyPageIcon = require('./CopyPageIcon');
|
|
74
74
|
var CornerUpRightIcon = require('./CornerUpRightIcon');
|
|
75
75
|
var CreditCardIcon = require('./CreditCardIcon');
|
|
76
|
+
var CrownFilledIcon = require('./CrownFilledIcon');
|
|
76
77
|
var CrownIcon = require('./CrownIcon');
|
|
77
78
|
var CurrentLocationIcon = require('./CurrentLocationIcon');
|
|
78
79
|
var DatabaseIcon = require('./DatabaseIcon');
|
|
@@ -207,6 +208,7 @@ var SiteLockOpenIcon = require('./SiteLockOpenIcon');
|
|
|
207
208
|
var SkewXIcon = require('./SkewXIcon');
|
|
208
209
|
var SocialIcon = require('./SocialIcon');
|
|
209
210
|
var SpeakerphoneIcon = require('./SpeakerphoneIcon');
|
|
211
|
+
var StarFilledIcon = require('./StarFilledIcon');
|
|
210
212
|
var StarIcon = require('./StarIcon');
|
|
211
213
|
var StarOffIcon = require('./StarOffIcon');
|
|
212
214
|
var StrikethroughIcon = require('./StrikethroughIcon');
|
|
@@ -313,6 +315,7 @@ var CopyIcon__default = /*#__PURE__*/_interopDefault(CopyIcon);
|
|
|
313
315
|
var CopyPageIcon__default = /*#__PURE__*/_interopDefault(CopyPageIcon);
|
|
314
316
|
var CornerUpRightIcon__default = /*#__PURE__*/_interopDefault(CornerUpRightIcon);
|
|
315
317
|
var CreditCardIcon__default = /*#__PURE__*/_interopDefault(CreditCardIcon);
|
|
318
|
+
var CrownFilledIcon__default = /*#__PURE__*/_interopDefault(CrownFilledIcon);
|
|
316
319
|
var CrownIcon__default = /*#__PURE__*/_interopDefault(CrownIcon);
|
|
317
320
|
var CurrentLocationIcon__default = /*#__PURE__*/_interopDefault(CurrentLocationIcon);
|
|
318
321
|
var DatabaseIcon__default = /*#__PURE__*/_interopDefault(DatabaseIcon);
|
|
@@ -447,6 +450,7 @@ var SiteLockOpenIcon__default = /*#__PURE__*/_interopDefault(SiteLockOpenIcon);
|
|
|
447
450
|
var SkewXIcon__default = /*#__PURE__*/_interopDefault(SkewXIcon);
|
|
448
451
|
var SocialIcon__default = /*#__PURE__*/_interopDefault(SocialIcon);
|
|
449
452
|
var SpeakerphoneIcon__default = /*#__PURE__*/_interopDefault(SpeakerphoneIcon);
|
|
453
|
+
var StarFilledIcon__default = /*#__PURE__*/_interopDefault(StarFilledIcon);
|
|
450
454
|
var StarIcon__default = /*#__PURE__*/_interopDefault(StarIcon);
|
|
451
455
|
var StarOffIcon__default = /*#__PURE__*/_interopDefault(StarOffIcon);
|
|
452
456
|
var StrikethroughIcon__default = /*#__PURE__*/_interopDefault(StrikethroughIcon);
|
|
@@ -772,6 +776,10 @@ Object.defineProperty(exports, "CreditCardIcon", {
|
|
|
772
776
|
enumerable: true,
|
|
773
777
|
get: function () { return CreditCardIcon__default.default; }
|
|
774
778
|
});
|
|
779
|
+
Object.defineProperty(exports, "CrownFilledIcon", {
|
|
780
|
+
enumerable: true,
|
|
781
|
+
get: function () { return CrownFilledIcon__default.default; }
|
|
782
|
+
});
|
|
775
783
|
Object.defineProperty(exports, "CrownIcon", {
|
|
776
784
|
enumerable: true,
|
|
777
785
|
get: function () { return CrownIcon__default.default; }
|
|
@@ -1308,6 +1316,10 @@ Object.defineProperty(exports, "SpeakerphoneIcon", {
|
|
|
1308
1316
|
enumerable: true,
|
|
1309
1317
|
get: function () { return SpeakerphoneIcon__default.default; }
|
|
1310
1318
|
});
|
|
1319
|
+
Object.defineProperty(exports, "StarFilledIcon", {
|
|
1320
|
+
enumerable: true,
|
|
1321
|
+
get: function () { return StarFilledIcon__default.default; }
|
|
1322
|
+
});
|
|
1311
1323
|
Object.defineProperty(exports, "StarIcon", {
|
|
1312
1324
|
enumerable: true,
|
|
1313
1325
|
get: function () { return StarIcon__default.default; }
|
package/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export { default as CopyIcon } from './CopyIcon';
|
|
|
71
71
|
export { default as CopyPageIcon } from './CopyPageIcon';
|
|
72
72
|
export { default as CornerUpRightIcon } from './CornerUpRightIcon';
|
|
73
73
|
export { default as CreditCardIcon } from './CreditCardIcon';
|
|
74
|
+
export { default as CrownFilledIcon } from './CrownFilledIcon';
|
|
74
75
|
export { default as CrownIcon } from './CrownIcon';
|
|
75
76
|
export { default as CurrentLocationIcon } from './CurrentLocationIcon';
|
|
76
77
|
export { default as DatabaseIcon } from './DatabaseIcon';
|
|
@@ -205,6 +206,7 @@ export { default as SiteLockOpenIcon } from './SiteLockOpenIcon';
|
|
|
205
206
|
export { default as SkewXIcon } from './SkewXIcon';
|
|
206
207
|
export { default as SocialIcon } from './SocialIcon';
|
|
207
208
|
export { default as SpeakerphoneIcon } from './SpeakerphoneIcon';
|
|
209
|
+
export { default as StarFilledIcon } from './StarFilledIcon';
|
|
208
210
|
export { default as StarIcon } from './StarIcon';
|
|
209
211
|
export { default as StarOffIcon } from './StarOffIcon';
|
|
210
212
|
export { default as StrikethroughIcon } from './StrikethroughIcon';
|
package/index.js
CHANGED
|
@@ -71,6 +71,7 @@ export { default as CopyIcon } from './CopyIcon';
|
|
|
71
71
|
export { default as CopyPageIcon } from './CopyPageIcon';
|
|
72
72
|
export { default as CornerUpRightIcon } from './CornerUpRightIcon';
|
|
73
73
|
export { default as CreditCardIcon } from './CreditCardIcon';
|
|
74
|
+
export { default as CrownFilledIcon } from './CrownFilledIcon';
|
|
74
75
|
export { default as CrownIcon } from './CrownIcon';
|
|
75
76
|
export { default as CurrentLocationIcon } from './CurrentLocationIcon';
|
|
76
77
|
export { default as DatabaseIcon } from './DatabaseIcon';
|
|
@@ -205,6 +206,7 @@ export { default as SiteLockOpenIcon } from './SiteLockOpenIcon';
|
|
|
205
206
|
export { default as SkewXIcon } from './SkewXIcon';
|
|
206
207
|
export { default as SocialIcon } from './SocialIcon';
|
|
207
208
|
export { default as SpeakerphoneIcon } from './SpeakerphoneIcon';
|
|
209
|
+
export { default as StarFilledIcon } from './StarFilledIcon';
|
|
208
210
|
export { default as StarIcon } from './StarIcon';
|
|
209
211
|
export { default as StarOffIcon } from './StarOffIcon';
|
|
210
212
|
export { default as StrikethroughIcon } from './StrikethroughIcon';
|