@elementor/icons 1.49.0 → 1.50.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 VariationsIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default VariationsIcon;
@@ -0,0 +1,16 @@
1
+ import * as React from 'react';
2
+ import SvgIcon from '@elementor/ui/SvgIcon';
3
+
4
+ const VariationsIcon = 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: "M13.1429 3.25C12.0975 3.25 11.25 4.09746 11.25 5.14286V6.25H10.1429C9.64084 6.25 9.15938 6.44943 8.80441 6.8044C8.44943 7.15938 8.25 7.64084 8.25 8.14286V9.25H7.14286C6.64084 9.25 6.15938 9.44943 5.8044 9.80441C5.44943 10.1594 5.25 10.6408 5.25 11.1429V12.25H4.14286C3.64084 12.25 3.15938 12.4494 2.8044 12.8044C2.44943 13.1594 2.25 13.6408 2.25 14.1429V19.8571C2.25 20.3592 2.44943 20.8406 2.8044 21.1956C3.15938 21.5506 3.64084 21.75 4.14286 21.75H9.85714C10.3592 21.75 10.8406 21.5506 11.1956 21.1956C11.5506 20.8406 11.75 20.3592 11.75 19.8571V18.75H12.8571C13.3592 18.75 13.8406 18.5506 14.1956 18.1956C14.5506 17.8406 14.75 17.3592 14.75 16.8571V15.75H15.8571C16.3592 15.75 16.8406 15.5506 17.1956 15.1956C17.5506 14.8406 17.75 14.3592 17.75 13.8571V12.75H18.8571C19.9025 12.75 20.75 11.9025 20.75 10.8571V5.14286C20.75 4.09746 19.9025 3.25 18.8571 3.25H13.1429ZM12.75 5.14286C12.75 4.92589 12.9259 4.75 13.1429 4.75H18.8571C19.0741 4.75 19.25 4.92589 19.25 5.14286V10.8571C19.25 11.0741 19.0741 11.25 18.8571 11.25H13.1429C12.9259 11.25 12.75 11.0741 12.75 10.8571V5.14286ZM10.25 18.75H7.14286C6.64084 18.75 6.15938 18.5506 5.8044 18.1956C5.44943 17.8406 5.25 17.3592 5.25 16.8571V13.75H4.14286C4.03866 13.75 3.93874 13.7914 3.86507 13.8651C3.79139 13.9387 3.75 14.0387 3.75 14.1429V19.8571C3.75 19.9613 3.79139 20.0613 3.86507 20.1349C3.93874 20.2086 4.03867 20.25 4.14286 20.25H9.85714C9.96133 20.25 10.0613 20.2086 10.1349 20.1349C10.2086 20.0613 10.25 19.9613 10.25 19.8571V18.75ZM7.14286 10.75H8.25V13.8571C8.25 14.3592 8.44943 14.8406 8.80441 15.1956C9.15938 15.5506 9.64084 15.75 10.1429 15.75H13.25V16.8571C13.25 16.9613 13.2086 17.0613 13.1349 17.1349C13.0613 17.2086 12.9613 17.25 12.8571 17.25H7.14286C7.03867 17.25 6.93874 17.2086 6.86507 17.1349C6.79139 17.0613 6.75 16.9613 6.75 16.8571V11.1429C6.75 11.0387 6.79139 10.9387 6.86507 10.8651C6.93874 10.7914 7.03866 10.75 7.14286 10.75ZM16.25 12.75H13.1429C12.0975 12.75 11.25 11.9025 11.25 10.8571V7.75H10.1429C10.0387 7.75 9.93874 7.79139 9.86507 7.86507C9.79139 7.93874 9.75 8.03866 9.75 8.14286V13.8571C9.75 13.9613 9.79139 14.0613 9.86507 14.1349C9.93874 14.2086 10.0387 14.25 10.1429 14.25H15.8571C15.9613 14.25 16.0613 14.2086 16.1349 14.1349C16.2086 14.0613 16.25 13.9613 16.25 13.8571V12.75Z"
11
+ }
12
+ ));
13
+ });
14
+ var VariationsIcon_default = VariationsIcon;
15
+
16
+ export { VariationsIcon_default as default };
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SvgIconProps } from '@elementor/ui/SvgIcon';
3
+ declare const VariationsIcon: React.ForwardRefExoticComponent<Omit<SvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
4
+ export default VariationsIcon;
@@ -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 VariationsIcon = 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: "M13.1429 3.25C12.0975 3.25 11.25 4.09746 11.25 5.14286V6.25H10.1429C9.64084 6.25 9.15938 6.44943 8.80441 6.8044C8.44943 7.15938 8.25 7.64084 8.25 8.14286V9.25H7.14286C6.64084 9.25 6.15938 9.44943 5.8044 9.80441C5.44943 10.1594 5.25 10.6408 5.25 11.1429V12.25H4.14286C3.64084 12.25 3.15938 12.4494 2.8044 12.8044C2.44943 13.1594 2.25 13.6408 2.25 14.1429V19.8571C2.25 20.3592 2.44943 20.8406 2.8044 21.1956C3.15938 21.5506 3.64084 21.75 4.14286 21.75H9.85714C10.3592 21.75 10.8406 21.5506 11.1956 21.1956C11.5506 20.8406 11.75 20.3592 11.75 19.8571V18.75H12.8571C13.3592 18.75 13.8406 18.5506 14.1956 18.1956C14.5506 17.8406 14.75 17.3592 14.75 16.8571V15.75H15.8571C16.3592 15.75 16.8406 15.5506 17.1956 15.1956C17.5506 14.8406 17.75 14.3592 17.75 13.8571V12.75H18.8571C19.9025 12.75 20.75 11.9025 20.75 10.8571V5.14286C20.75 4.09746 19.9025 3.25 18.8571 3.25H13.1429ZM12.75 5.14286C12.75 4.92589 12.9259 4.75 13.1429 4.75H18.8571C19.0741 4.75 19.25 4.92589 19.25 5.14286V10.8571C19.25 11.0741 19.0741 11.25 18.8571 11.25H13.1429C12.9259 11.25 12.75 11.0741 12.75 10.8571V5.14286ZM10.25 18.75H7.14286C6.64084 18.75 6.15938 18.5506 5.8044 18.1956C5.44943 17.8406 5.25 17.3592 5.25 16.8571V13.75H4.14286C4.03866 13.75 3.93874 13.7914 3.86507 13.8651C3.79139 13.9387 3.75 14.0387 3.75 14.1429V19.8571C3.75 19.9613 3.79139 20.0613 3.86507 20.1349C3.93874 20.2086 4.03867 20.25 4.14286 20.25H9.85714C9.96133 20.25 10.0613 20.2086 10.1349 20.1349C10.2086 20.0613 10.25 19.9613 10.25 19.8571V18.75ZM7.14286 10.75H8.25V13.8571C8.25 14.3592 8.44943 14.8406 8.80441 15.1956C9.15938 15.5506 9.64084 15.75 10.1429 15.75H13.25V16.8571C13.25 16.9613 13.2086 17.0613 13.1349 17.1349C13.0613 17.2086 12.9613 17.25 12.8571 17.25H7.14286C7.03867 17.25 6.93874 17.2086 6.86507 17.1349C6.79139 17.0613 6.75 16.9613 6.75 16.8571V11.1429C6.75 11.0387 6.79139 10.9387 6.86507 10.8651C6.93874 10.7914 7.03866 10.75 7.14286 10.75ZM16.25 12.75H13.1429C12.0975 12.75 11.25 11.9025 11.25 10.8571V7.75H10.1429C10.0387 7.75 9.93874 7.79139 9.86507 7.86507C9.79139 7.93874 9.75 8.03866 9.75 8.14286V13.8571C9.75 13.9613 9.79139 14.0613 9.86507 14.1349C9.93874 14.2086 10.0387 14.25 10.1429 14.25H15.8571C15.9613 14.25 16.0613 14.2086 16.1349 14.1349C16.2086 14.0613 16.25 13.9613 16.25 13.8571V12.75Z"
36
+ }
37
+ ));
38
+ });
39
+ var VariationsIcon_default = VariationsIcon;
40
+
41
+ module.exports = VariationsIcon_default;
package/cjs/index.d.ts CHANGED
@@ -229,6 +229,7 @@ export { default as UserHeartIcon } from './UserHeartIcon';
229
229
  export { default as UserIcon } from './UserIcon';
230
230
  export { default as UserPlusIcon } from './UserPlusIcon';
231
231
  export { default as UsersIcon } from './UsersIcon';
232
+ export { default as VariationsIcon } from './VariationsIcon';
232
233
  export { default as WalletIcon } from './WalletIcon';
233
234
  export { default as WebsiteIcon } from './WebsiteIcon';
234
235
  export { default as WhatsappIcon } from './WhatsappIcon';
package/cjs/index.js CHANGED
@@ -231,6 +231,7 @@ var UserHeartIcon = require('./UserHeartIcon');
231
231
  var UserIcon = require('./UserIcon');
232
232
  var UserPlusIcon = require('./UserPlusIcon');
233
233
  var UsersIcon = require('./UsersIcon');
234
+ var VariationsIcon = require('./VariationsIcon');
234
235
  var WalletIcon = require('./WalletIcon');
235
236
  var WebsiteIcon = require('./WebsiteIcon');
236
237
  var WhatsappIcon = require('./WhatsappIcon');
@@ -473,6 +474,7 @@ var UserHeartIcon__default = /*#__PURE__*/_interopDefault(UserHeartIcon);
473
474
  var UserIcon__default = /*#__PURE__*/_interopDefault(UserIcon);
474
475
  var UserPlusIcon__default = /*#__PURE__*/_interopDefault(UserPlusIcon);
475
476
  var UsersIcon__default = /*#__PURE__*/_interopDefault(UsersIcon);
477
+ var VariationsIcon__default = /*#__PURE__*/_interopDefault(VariationsIcon);
476
478
  var WalletIcon__default = /*#__PURE__*/_interopDefault(WalletIcon);
477
479
  var WebsiteIcon__default = /*#__PURE__*/_interopDefault(WebsiteIcon);
478
480
  var WhatsappIcon__default = /*#__PURE__*/_interopDefault(WhatsappIcon);
@@ -1408,6 +1410,10 @@ Object.defineProperty(exports, "UsersIcon", {
1408
1410
  enumerable: true,
1409
1411
  get: function () { return UsersIcon__default.default; }
1410
1412
  });
1413
+ Object.defineProperty(exports, "VariationsIcon", {
1414
+ enumerable: true,
1415
+ get: function () { return VariationsIcon__default.default; }
1416
+ });
1411
1417
  Object.defineProperty(exports, "WalletIcon", {
1412
1418
  enumerable: true,
1413
1419
  get: function () { return WalletIcon__default.default; }
package/index.d.ts CHANGED
@@ -229,6 +229,7 @@ export { default as UserHeartIcon } from './UserHeartIcon';
229
229
  export { default as UserIcon } from './UserIcon';
230
230
  export { default as UserPlusIcon } from './UserPlusIcon';
231
231
  export { default as UsersIcon } from './UsersIcon';
232
+ export { default as VariationsIcon } from './VariationsIcon';
232
233
  export { default as WalletIcon } from './WalletIcon';
233
234
  export { default as WebsiteIcon } from './WebsiteIcon';
234
235
  export { default as WhatsappIcon } from './WhatsappIcon';
package/index.js CHANGED
@@ -229,6 +229,7 @@ export { default as UserHeartIcon } from './UserHeartIcon';
229
229
  export { default as UserIcon } from './UserIcon';
230
230
  export { default as UserPlusIcon } from './UserPlusIcon';
231
231
  export { default as UsersIcon } from './UsersIcon';
232
+ export { default as VariationsIcon } from './VariationsIcon';
232
233
  export { default as WalletIcon } from './WalletIcon';
233
234
  export { default as WebsiteIcon } from './WebsiteIcon';
234
235
  export { default as WhatsappIcon } from './WhatsappIcon';
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "require": "./cjs/*/index.js"
17
17
  }
18
18
  },
19
- "version": "1.49.0",
19
+ "version": "1.50.0",
20
20
  "description": "Elementor Icons Library",
21
21
  "author": "Elementor Team",
22
22
  "homepage": "https://elementor.github.io/elementor-ui/",