@elementor/icons 1.20.1 → 1.21.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/ArrowsLeftRightIcon/index.d.ts +4 -0
- package/ArrowsLeftRightIcon/index.esm.js +9 -0
- package/ArrowsLeftRightIcon/index.esm.js.map +1 -0
- package/ArrowsLeftRightIcon/index.js +36 -0
- package/ArrowsLeftRightIcon/index.js.map +1 -0
- package/ArrowsLeftRightIcon/package.json +7 -0
- package/ArrowsRightLeftIcon/index.d.ts +4 -0
- package/ArrowsRightLeftIcon/index.esm.js +9 -0
- package/ArrowsRightLeftIcon/index.esm.js.map +1 -0
- package/ArrowsRightLeftIcon/index.js +36 -0
- package/ArrowsRightLeftIcon/index.js.map +1 -0
- package/ArrowsRightLeftIcon/package.json +7 -0
- package/index.d.ts +2 -0
- package/index.esm.js +9 -1
- package/index.esm.js.map +1 -1
- package/index.js +10 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -260,6 +260,14 @@ const ArrowUpSmallIcon = React__namespace.forwardRef((props, ref) => {
|
|
|
260
260
|
));
|
|
261
261
|
});
|
|
262
262
|
|
|
263
|
+
const ArrowsLeftRightIcon = React__namespace.forwardRef((props, ref) => {
|
|
264
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement("path", { d: "M6.53033 3.46967C6.82322 3.76256 6.82322 4.23744 6.53033 4.53033L4.81066 6.25H21C21.4142 6.25 21.75 6.58579 21.75 7C21.75 7.41421 21.4142 7.75 21 7.75H4.81066L6.53033 9.46967C6.82322 9.76256 6.82322 10.2374 6.53033 10.5303C6.23744 10.8232 5.76256 10.8232 5.46967 10.5303L2.46967 7.53033C2.17678 7.23744 2.17678 6.76256 2.46967 6.46967L5.46967 3.46967C5.76256 3.17678 6.23744 3.17678 6.53033 3.46967Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M17.4697 13.4697C17.7626 13.1768 18.2374 13.1768 18.5303 13.4697L21.5303 16.4697C21.8232 16.7626 21.8232 17.2374 21.5303 17.5303L18.5303 20.5303C18.2374 20.8232 17.7626 20.8232 17.4697 20.5303C17.1768 20.2374 17.1768 19.7626 17.4697 19.4697L19.1893 17.75H3C2.58579 17.75 2.25 17.4142 2.25 17C2.25 16.5858 2.58579 16.25 3 16.25H19.1893L17.4697 14.5303C17.1768 14.2374 17.1768 13.7626 17.4697 13.4697Z" }));
|
|
265
|
+
});
|
|
266
|
+
|
|
267
|
+
const ArrowsRightLeftIcon = React__namespace.forwardRef((props, ref) => {
|
|
268
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement("path", { d: "M17.4697 3.46967C17.7626 3.17678 18.2374 3.17678 18.5303 3.46967L21.5303 6.46967C21.8232 6.76256 21.8232 7.23744 21.5303 7.53033L18.5303 10.5303C18.2374 10.8232 17.7626 10.8232 17.4697 10.5303C17.1768 10.2374 17.1768 9.76256 17.4697 9.46967L19.1893 7.75H3C2.58579 7.75 2.25 7.41421 2.25 7C2.25 6.58579 2.58579 6.25 3 6.25H19.1893L17.4697 4.53033C17.1768 4.23744 17.1768 3.76256 17.4697 3.46967Z" }), /* @__PURE__ */ React__namespace.createElement("path", { d: "M6.53033 13.4697C6.82322 13.7626 6.82322 14.2374 6.53033 14.5303L4.81066 16.25H21C21.4142 16.25 21.75 16.5858 21.75 17C21.75 17.4142 21.4142 17.75 21 17.75H4.81066L6.53033 19.4697C6.82322 19.7626 6.82322 20.2374 6.53033 20.5303C6.23744 20.8232 5.76256 20.8232 5.46967 20.5303L2.46967 17.5303C2.17678 17.2374 2.17678 16.7626 2.46967 16.4697L5.46967 13.4697C5.76256 13.1768 6.23744 13.1768 6.53033 13.4697Z" }));
|
|
269
|
+
});
|
|
270
|
+
|
|
263
271
|
const BanIcon = React__namespace.forwardRef((props, ref) => {
|
|
264
272
|
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
265
273
|
"path",
|
|
@@ -2079,6 +2087,8 @@ exports.ArrowLeftIcon = ArrowLeftIcon;
|
|
|
2079
2087
|
exports.ArrowRightIcon = ArrowRightIcon;
|
|
2080
2088
|
exports.ArrowUpRightIcon = ArrowUpRightIcon;
|
|
2081
2089
|
exports.ArrowUpSmallIcon = ArrowUpSmallIcon;
|
|
2090
|
+
exports.ArrowsLeftRightIcon = ArrowsLeftRightIcon;
|
|
2091
|
+
exports.ArrowsRightLeftIcon = ArrowsRightLeftIcon;
|
|
2082
2092
|
exports.BanIcon = BanIcon;
|
|
2083
2093
|
exports.BoltIcon = BoltIcon;
|
|
2084
2094
|
exports.BorderCornersIcon = BorderCornersIcon;
|