@elementor/icons 1.55.0 → 1.56.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/SwipeIcon/index.d.ts +4 -0
- package/SwipeIcon/index.js +16 -0
- package/cjs/SwipeIcon/index.d.ts +4 -0
- package/cjs/SwipeIcon/index.js +41 -0
- package/cjs/index.d.ts +1 -0
- package/cjs/index.js +6 -0
- package/index.d.ts +1 -0
- package/index.js +1 -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 SwipeIcon = 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.49219 0.373684C8.13217 0.0042212 8.89247 -0.0961702 9.60645 0.0943874L17.4336 2.19107C18.1472 2.38307 18.7555 2.85089 19.125 3.49087C19.4944 4.13081 19.5948 4.89121 19.4043 5.60513L17.3076 13.4313C17.1156 14.1448 16.6477 14.7542 16.0078 15.1237C15.3679 15.4931 14.6075 15.5935 13.8936 15.403L13.5 15.2975V16.7418C13.4991 17.4729 13.2084 18.1743 12.6914 18.6911C12.2388 19.1434 11.6449 19.4221 11.0137 19.485L10.7412 19.4987H2.75977C2.02818 19.4986 1.32608 19.2082 0.808594 18.6911C0.291117 18.1738 0.000458695 17.4715 0 16.7399V8.75845C6.20303e-05 8.02686 0.290483 7.32477 0.807617 6.80728C1.32492 6.28972 2.02703 5.99905 2.75879 5.99868H5.1377L6.19238 2.06509L6.27734 1.8024C6.50413 1.20288 6.93224 0.696987 7.49219 0.373684ZM2.75977 7.49868L2.63477 7.50454C2.34657 7.53332 2.07573 7.66124 1.86914 7.86783C1.63315 8.10403 1.50006 8.42455 1.5 8.75845V16.7389L1.50586 16.8639C1.5347 17.152 1.66263 17.423 1.86914 17.6295C2.10535 17.8655 2.42587 17.9986 2.75977 17.9987H10.7402C11.074 17.9985 11.3948 17.8654 11.6309 17.6295C11.8665 17.3939 11.9993 17.0741 12 16.7409V14.8952L6.06543 13.3063C5.35188 13.1143 4.74351 12.6464 4.37402 12.0065C4.00459 11.3666 3.90424 10.6062 4.09473 9.89224L4.73633 7.49868H2.75977ZM9.21973 1.54361C8.88966 1.45551 8.53806 1.50175 8.24219 1.67251C7.94634 1.84335 7.73036 2.12483 7.6416 2.45474L5.54395 10.279C5.45592 10.609 5.50211 10.9607 5.67285 11.2565C5.84369 11.5523 6.12518 11.7683 6.45508 11.8571L14.2812 13.9538C14.6111 14.0416 14.9622 13.9954 15.2578 13.8249C15.5537 13.6541 15.7696 13.3725 15.8584 13.0426L17.9551 5.21743C18.0429 4.88763 17.9967 4.5365 17.8262 4.24087C17.6553 3.94497 17.3739 3.72906 17.0439 3.64029L9.21973 1.54361Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
var SwipeIcon_default = SwipeIcon;
|
|
15
|
+
|
|
16
|
+
export { SwipeIcon_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 SwipeIcon = 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: "M7.49219 0.373684C8.13217 0.0042212 8.89247 -0.0961702 9.60645 0.0943874L17.4336 2.19107C18.1472 2.38307 18.7555 2.85089 19.125 3.49087C19.4944 4.13081 19.5948 4.89121 19.4043 5.60513L17.3076 13.4313C17.1156 14.1448 16.6477 14.7542 16.0078 15.1237C15.3679 15.4931 14.6075 15.5935 13.8936 15.403L13.5 15.2975V16.7418C13.4991 17.4729 13.2084 18.1743 12.6914 18.6911C12.2388 19.1434 11.6449 19.4221 11.0137 19.485L10.7412 19.4987H2.75977C2.02818 19.4986 1.32608 19.2082 0.808594 18.6911C0.291117 18.1738 0.000458695 17.4715 0 16.7399V8.75845C6.20303e-05 8.02686 0.290483 7.32477 0.807617 6.80728C1.32492 6.28972 2.02703 5.99905 2.75879 5.99868H5.1377L6.19238 2.06509L6.27734 1.8024C6.50413 1.20288 6.93224 0.696987 7.49219 0.373684ZM2.75977 7.49868L2.63477 7.50454C2.34657 7.53332 2.07573 7.66124 1.86914 7.86783C1.63315 8.10403 1.50006 8.42455 1.5 8.75845V16.7389L1.50586 16.8639C1.5347 17.152 1.66263 17.423 1.86914 17.6295C2.10535 17.8655 2.42587 17.9986 2.75977 17.9987H10.7402C11.074 17.9985 11.3948 17.8654 11.6309 17.6295C11.8665 17.3939 11.9993 17.0741 12 16.7409V14.8952L6.06543 13.3063C5.35188 13.1143 4.74351 12.6464 4.37402 12.0065C4.00459 11.3666 3.90424 10.6062 4.09473 9.89224L4.73633 7.49868H2.75977ZM9.21973 1.54361C8.88966 1.45551 8.53806 1.50175 8.24219 1.67251C7.94634 1.84335 7.73036 2.12483 7.6416 2.45474L5.54395 10.279C5.45592 10.609 5.50211 10.9607 5.67285 11.2565C5.84369 11.5523 6.12518 11.7683 6.45508 11.8571L14.2812 13.9538C14.6111 14.0416 14.9622 13.9954 15.2578 13.8249C15.5537 13.6541 15.7696 13.3725 15.8584 13.0426L17.9551 5.21743C18.0429 4.88763 17.9967 4.5365 17.8262 4.24087C17.6553 3.94497 17.3739 3.72906 17.0439 3.64029L9.21973 1.54361Z"
|
|
36
|
+
}
|
|
37
|
+
));
|
|
38
|
+
});
|
|
39
|
+
var SwipeIcon_default = SwipeIcon;
|
|
40
|
+
|
|
41
|
+
module.exports = SwipeIcon_default;
|
package/cjs/index.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ export { default as StarIcon } from './StarIcon';
|
|
|
218
218
|
export { default as StarOffIcon } from './StarOffIcon';
|
|
219
219
|
export { default as StrikethroughIcon } from './StrikethroughIcon';
|
|
220
220
|
export { default as StructureIcon } from './StructureIcon';
|
|
221
|
+
export { default as SwipeIcon } from './SwipeIcon';
|
|
221
222
|
export { default as TabletIcon } from './TabletIcon';
|
|
222
223
|
export { default as TabletLandscapeIcon } from './TabletLandscapeIcon';
|
|
223
224
|
export { default as TabletPortraitIcon } from './TabletPortraitIcon';
|
package/cjs/index.js
CHANGED
|
@@ -220,6 +220,7 @@ var StarIcon = require('./StarIcon');
|
|
|
220
220
|
var StarOffIcon = require('./StarOffIcon');
|
|
221
221
|
var StrikethroughIcon = require('./StrikethroughIcon');
|
|
222
222
|
var StructureIcon = require('./StructureIcon');
|
|
223
|
+
var SwipeIcon = require('./SwipeIcon');
|
|
223
224
|
var TabletIcon = require('./TabletIcon');
|
|
224
225
|
var TabletLandscapeIcon = require('./TabletLandscapeIcon');
|
|
225
226
|
var TabletPortraitIcon = require('./TabletPortraitIcon');
|
|
@@ -470,6 +471,7 @@ var StarIcon__default = /*#__PURE__*/_interopDefault(StarIcon);
|
|
|
470
471
|
var StarOffIcon__default = /*#__PURE__*/_interopDefault(StarOffIcon);
|
|
471
472
|
var StrikethroughIcon__default = /*#__PURE__*/_interopDefault(StrikethroughIcon);
|
|
472
473
|
var StructureIcon__default = /*#__PURE__*/_interopDefault(StructureIcon);
|
|
474
|
+
var SwipeIcon__default = /*#__PURE__*/_interopDefault(SwipeIcon);
|
|
473
475
|
var TabletIcon__default = /*#__PURE__*/_interopDefault(TabletIcon);
|
|
474
476
|
var TabletLandscapeIcon__default = /*#__PURE__*/_interopDefault(TabletLandscapeIcon);
|
|
475
477
|
var TabletPortraitIcon__default = /*#__PURE__*/_interopDefault(TabletPortraitIcon);
|
|
@@ -1380,6 +1382,10 @@ Object.defineProperty(exports, "StructureIcon", {
|
|
|
1380
1382
|
enumerable: true,
|
|
1381
1383
|
get: function () { return StructureIcon__default.default; }
|
|
1382
1384
|
});
|
|
1385
|
+
Object.defineProperty(exports, "SwipeIcon", {
|
|
1386
|
+
enumerable: true,
|
|
1387
|
+
get: function () { return SwipeIcon__default.default; }
|
|
1388
|
+
});
|
|
1383
1389
|
Object.defineProperty(exports, "TabletIcon", {
|
|
1384
1390
|
enumerable: true,
|
|
1385
1391
|
get: function () { return TabletIcon__default.default; }
|
package/index.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ export { default as StarIcon } from './StarIcon';
|
|
|
218
218
|
export { default as StarOffIcon } from './StarOffIcon';
|
|
219
219
|
export { default as StrikethroughIcon } from './StrikethroughIcon';
|
|
220
220
|
export { default as StructureIcon } from './StructureIcon';
|
|
221
|
+
export { default as SwipeIcon } from './SwipeIcon';
|
|
221
222
|
export { default as TabletIcon } from './TabletIcon';
|
|
222
223
|
export { default as TabletLandscapeIcon } from './TabletLandscapeIcon';
|
|
223
224
|
export { default as TabletPortraitIcon } from './TabletPortraitIcon';
|
package/index.js
CHANGED
|
@@ -218,6 +218,7 @@ export { default as StarIcon } from './StarIcon';
|
|
|
218
218
|
export { default as StarOffIcon } from './StarOffIcon';
|
|
219
219
|
export { default as StrikethroughIcon } from './StrikethroughIcon';
|
|
220
220
|
export { default as StructureIcon } from './StructureIcon';
|
|
221
|
+
export { default as SwipeIcon } from './SwipeIcon';
|
|
221
222
|
export { default as TabletIcon } from './TabletIcon';
|
|
222
223
|
export { default as TabletLandscapeIcon } from './TabletLandscapeIcon';
|
|
223
224
|
export { default as TabletPortraitIcon } from './TabletPortraitIcon';
|