@elementor/icons 1.51.1 → 1.52.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/ComponentsIcon/index.d.ts +4 -0
- package/ComponentsIcon/index.js +16 -0
- package/cjs/ComponentsIcon/index.d.ts +4 -0
- package/cjs/ComponentsIcon/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 ComponentsIcon = 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: "M11.5263 14.4181C11.8209 14.1778 12.2556 14.1952 12.5302 14.4698L15.5302 17.4698C15.8231 17.7627 15.8231 18.2375 15.5302 18.5304L12.5302 21.5304C12.2373 21.8233 11.7626 21.8233 11.4697 21.5304L8.46967 18.5304C8.17678 18.2375 8.17678 17.7627 8.46967 17.4698L11.4697 14.4698L11.5263 14.4181ZM10.0605 18.0001L11.9999 19.9396L13.9394 18.0001L11.9999 16.0607L10.0605 18.0001ZM5.52631 8.41809C5.82089 8.17778 6.25561 8.19524 6.53022 8.46984L9.53022 11.4698C9.82311 11.7627 9.82311 12.2375 9.53022 12.5304L6.53022 15.5304C6.23732 15.8233 5.76256 15.8233 5.46967 15.5304L2.46967 12.5304C2.17678 12.2375 2.17678 11.7627 2.46967 11.4698L5.46967 8.46984L5.52631 8.41809ZM17.5263 8.41809C17.8209 8.17778 18.2556 8.19524 18.5302 8.46984L21.5302 11.4698C21.8231 11.7627 21.8231 12.2375 21.5302 12.5304L18.5302 15.5304C18.2373 15.8233 17.7626 15.8233 17.4697 15.5304L14.4697 12.5304C14.1768 12.2375 14.1768 11.7627 14.4697 11.4698L17.4697 8.46984L17.5263 8.41809ZM4.06049 12.0001L5.99994 13.9396L7.9394 12.0001L5.99994 10.0607L4.06049 12.0001ZM16.0605 12.0001L17.9999 13.9396L19.9394 12.0001L17.9999 10.0607L16.0605 12.0001ZM11.5263 2.41809C11.8209 2.17778 12.2556 2.19524 12.5302 2.46984L15.5302 5.46984C15.8231 5.76274 15.8231 6.2375 15.5302 6.53039L12.5302 9.53039C12.2373 9.82328 11.7626 9.82328 11.4697 9.53039L8.46967 6.53039C8.17678 6.2375 8.17678 5.76274 8.46967 5.46984L11.4697 2.46984L11.5263 2.41809ZM10.0605 6.00012L11.9999 7.93957L13.9394 6.00012L11.9999 4.06066L10.0605 6.00012Z"
|
|
11
|
+
}
|
|
12
|
+
));
|
|
13
|
+
});
|
|
14
|
+
var ComponentsIcon_default = ComponentsIcon;
|
|
15
|
+
|
|
16
|
+
export { ComponentsIcon_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 ComponentsIcon = 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: "M11.5263 14.4181C11.8209 14.1778 12.2556 14.1952 12.5302 14.4698L15.5302 17.4698C15.8231 17.7627 15.8231 18.2375 15.5302 18.5304L12.5302 21.5304C12.2373 21.8233 11.7626 21.8233 11.4697 21.5304L8.46967 18.5304C8.17678 18.2375 8.17678 17.7627 8.46967 17.4698L11.4697 14.4698L11.5263 14.4181ZM10.0605 18.0001L11.9999 19.9396L13.9394 18.0001L11.9999 16.0607L10.0605 18.0001ZM5.52631 8.41809C5.82089 8.17778 6.25561 8.19524 6.53022 8.46984L9.53022 11.4698C9.82311 11.7627 9.82311 12.2375 9.53022 12.5304L6.53022 15.5304C6.23732 15.8233 5.76256 15.8233 5.46967 15.5304L2.46967 12.5304C2.17678 12.2375 2.17678 11.7627 2.46967 11.4698L5.46967 8.46984L5.52631 8.41809ZM17.5263 8.41809C17.8209 8.17778 18.2556 8.19524 18.5302 8.46984L21.5302 11.4698C21.8231 11.7627 21.8231 12.2375 21.5302 12.5304L18.5302 15.5304C18.2373 15.8233 17.7626 15.8233 17.4697 15.5304L14.4697 12.5304C14.1768 12.2375 14.1768 11.7627 14.4697 11.4698L17.4697 8.46984L17.5263 8.41809ZM4.06049 12.0001L5.99994 13.9396L7.9394 12.0001L5.99994 10.0607L4.06049 12.0001ZM16.0605 12.0001L17.9999 13.9396L19.9394 12.0001L17.9999 10.0607L16.0605 12.0001ZM11.5263 2.41809C11.8209 2.17778 12.2556 2.19524 12.5302 2.46984L15.5302 5.46984C15.8231 5.76274 15.8231 6.2375 15.5302 6.53039L12.5302 9.53039C12.2373 9.82328 11.7626 9.82328 11.4697 9.53039L8.46967 6.53039C8.17678 6.2375 8.17678 5.76274 8.46967 5.46984L11.4697 2.46984L11.5263 2.41809ZM10.0605 6.00012L11.9999 7.93957L13.9394 6.00012L11.9999 4.06066L10.0605 6.00012Z"
|
|
36
|
+
}
|
|
37
|
+
));
|
|
38
|
+
});
|
|
39
|
+
var ComponentsIcon_default = ComponentsIcon;
|
|
40
|
+
|
|
41
|
+
module.exports = ComponentsIcon_default;
|
package/cjs/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export { default as CodeIcon } from './CodeIcon';
|
|
|
68
68
|
export { default as CoinsIcon } from './CoinsIcon';
|
|
69
69
|
export { default as ColorFilterIcon } from './ColorFilterIcon';
|
|
70
70
|
export { default as ColorSwatchIcon } from './ColorSwatchIcon';
|
|
71
|
+
export { default as ComponentsIcon } from './ComponentsIcon';
|
|
71
72
|
export { default as ContainerTemplateIcon } from './ContainerTemplateIcon';
|
|
72
73
|
export { default as CopyIcon } from './CopyIcon';
|
|
73
74
|
export { default as CopyPageIcon } from './CopyPageIcon';
|
package/cjs/index.js
CHANGED
|
@@ -70,6 +70,7 @@ var CodeIcon = require('./CodeIcon');
|
|
|
70
70
|
var CoinsIcon = require('./CoinsIcon');
|
|
71
71
|
var ColorFilterIcon = require('./ColorFilterIcon');
|
|
72
72
|
var ColorSwatchIcon = require('./ColorSwatchIcon');
|
|
73
|
+
var ComponentsIcon = require('./ComponentsIcon');
|
|
73
74
|
var ContainerTemplateIcon = require('./ContainerTemplateIcon');
|
|
74
75
|
var CopyIcon = require('./CopyIcon');
|
|
75
76
|
var CopyPageIcon = require('./CopyPageIcon');
|
|
@@ -316,6 +317,7 @@ var CodeIcon__default = /*#__PURE__*/_interopDefault(CodeIcon);
|
|
|
316
317
|
var CoinsIcon__default = /*#__PURE__*/_interopDefault(CoinsIcon);
|
|
317
318
|
var ColorFilterIcon__default = /*#__PURE__*/_interopDefault(ColorFilterIcon);
|
|
318
319
|
var ColorSwatchIcon__default = /*#__PURE__*/_interopDefault(ColorSwatchIcon);
|
|
320
|
+
var ComponentsIcon__default = /*#__PURE__*/_interopDefault(ComponentsIcon);
|
|
319
321
|
var ContainerTemplateIcon__default = /*#__PURE__*/_interopDefault(ContainerTemplateIcon);
|
|
320
322
|
var CopyIcon__default = /*#__PURE__*/_interopDefault(CopyIcon);
|
|
321
323
|
var CopyPageIcon__default = /*#__PURE__*/_interopDefault(CopyPageIcon);
|
|
@@ -772,6 +774,10 @@ Object.defineProperty(exports, "ColorSwatchIcon", {
|
|
|
772
774
|
enumerable: true,
|
|
773
775
|
get: function () { return ColorSwatchIcon__default.default; }
|
|
774
776
|
});
|
|
777
|
+
Object.defineProperty(exports, "ComponentsIcon", {
|
|
778
|
+
enumerable: true,
|
|
779
|
+
get: function () { return ComponentsIcon__default.default; }
|
|
780
|
+
});
|
|
775
781
|
Object.defineProperty(exports, "ContainerTemplateIcon", {
|
|
776
782
|
enumerable: true,
|
|
777
783
|
get: function () { return ContainerTemplateIcon__default.default; }
|
package/index.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export { default as CodeIcon } from './CodeIcon';
|
|
|
68
68
|
export { default as CoinsIcon } from './CoinsIcon';
|
|
69
69
|
export { default as ColorFilterIcon } from './ColorFilterIcon';
|
|
70
70
|
export { default as ColorSwatchIcon } from './ColorSwatchIcon';
|
|
71
|
+
export { default as ComponentsIcon } from './ComponentsIcon';
|
|
71
72
|
export { default as ContainerTemplateIcon } from './ContainerTemplateIcon';
|
|
72
73
|
export { default as CopyIcon } from './CopyIcon';
|
|
73
74
|
export { default as CopyPageIcon } from './CopyPageIcon';
|
package/index.js
CHANGED
|
@@ -68,6 +68,7 @@ export { default as CodeIcon } from './CodeIcon';
|
|
|
68
68
|
export { default as CoinsIcon } from './CoinsIcon';
|
|
69
69
|
export { default as ColorFilterIcon } from './ColorFilterIcon';
|
|
70
70
|
export { default as ColorSwatchIcon } from './ColorSwatchIcon';
|
|
71
|
+
export { default as ComponentsIcon } from './ComponentsIcon';
|
|
71
72
|
export { default as ContainerTemplateIcon } from './ContainerTemplateIcon';
|
|
72
73
|
export { default as CopyIcon } from './CopyIcon';
|
|
73
74
|
export { default as CopyPageIcon } from './CopyPageIcon';
|