@elementor/icons 1.27.0 → 1.29.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/CircleMinusIcon/index.d.ts +4 -0
- package/CircleMinusIcon/index.esm.js +16 -0
- package/CircleMinusIcon/index.esm.js.map +1 -0
- package/CircleMinusIcon/index.js +43 -0
- package/CircleMinusIcon/index.js.map +1 -0
- package/CircleMinusIcon/package.json +7 -0
- package/GripVerticalIcon/index.d.ts +4 -0
- package/GripVerticalIcon/index.esm.js +16 -0
- package/GripVerticalIcon/index.esm.js.map +1 -0
- package/GripVerticalIcon/index.js +43 -0
- package/GripVerticalIcon/index.js.map +1 -0
- package/GripVerticalIcon/package.json +7 -0
- package/index.d.ts +2 -0
- package/index.esm.js +23 -1
- package/index.esm.js.map +1 -1
- package/index.js +24 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -532,6 +532,17 @@ const CircleCheckFilledIcon = React__namespace.forwardRef((props, ref) => {
|
|
|
532
532
|
));
|
|
533
533
|
});
|
|
534
534
|
|
|
535
|
+
const CircleMinusIcon = React__namespace.forwardRef((props, ref) => {
|
|
536
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
537
|
+
"path",
|
|
538
|
+
{
|
|
539
|
+
fillRule: "evenodd",
|
|
540
|
+
clipRule: "evenodd",
|
|
541
|
+
d: "M12 3.75C7.44365 3.75 3.75 7.44365 3.75 12C3.75 16.5563 7.44365 20.25 12 20.25C16.5563 20.25 20.25 16.5563 20.25 12C20.25 7.44365 16.5563 3.75 12 3.75ZM2.25 12C2.25 6.61522 6.61522 2.25 12 2.25C17.3848 2.25 21.75 6.61522 21.75 12C21.75 17.3848 17.3848 21.75 12 21.75C6.61522 21.75 2.25 17.3848 2.25 12ZM8.25 12C8.25 11.5858 8.58579 11.25 9 11.25H15C15.4142 11.25 15.75 11.5858 15.75 12C15.75 12.4142 15.4142 12.75 15 12.75H9C8.58579 12.75 8.25 12.4142 8.25 12Z"
|
|
542
|
+
}
|
|
543
|
+
));
|
|
544
|
+
});
|
|
545
|
+
|
|
535
546
|
const CirclePlusIcon = React__namespace.forwardRef((props, ref) => {
|
|
536
547
|
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
537
548
|
"path",
|
|
@@ -950,6 +961,17 @@ const GridDotsIcon = React__namespace.forwardRef((props, ref) => {
|
|
|
950
961
|
));
|
|
951
962
|
});
|
|
952
963
|
|
|
964
|
+
const GripVerticalIcon = React__namespace.forwardRef((props, ref) => {
|
|
965
|
+
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
966
|
+
"path",
|
|
967
|
+
{
|
|
968
|
+
fillRule: "evenodd",
|
|
969
|
+
clipRule: "evenodd",
|
|
970
|
+
d: "M7.25 5C7.25 4.0335 8.0335 3.25 9 3.25C9.9665 3.25 10.75 4.0335 10.75 5C10.75 5.9665 9.9665 6.75 9 6.75C8.0335 6.75 7.25 5.9665 7.25 5ZM13.25 5C13.25 4.0335 14.0335 3.25 15 3.25C15.9665 3.25 16.75 4.0335 16.75 5C16.75 5.9665 15.9665 6.75 15 6.75C14.0335 6.75 13.25 5.9665 13.25 5ZM7.25 12C7.25 11.0335 8.0335 10.25 9 10.25C9.9665 10.25 10.75 11.0335 10.75 12C10.75 12.9665 9.9665 13.75 9 13.75C8.0335 13.75 7.25 12.9665 7.25 12ZM13.25 12C13.25 11.0335 14.0335 10.25 15 10.25C15.9665 10.25 16.75 11.0335 16.75 12C16.75 12.9665 15.9665 13.75 15 13.75C14.0335 13.75 13.25 12.9665 13.25 12ZM7.25 19C7.25 18.0335 8.0335 17.25 9 17.25C9.9665 17.25 10.75 18.0335 10.75 19C10.75 19.9665 9.9665 20.75 9 20.75C8.0335 20.75 7.25 19.9665 7.25 19ZM13.25 19C13.25 18.0335 14.0335 17.25 15 17.25C15.9665 17.25 16.75 18.0335 16.75 19C16.75 19.9665 15.9665 20.75 15 20.75C14.0335 20.75 13.25 19.9665 13.25 19Z"
|
|
971
|
+
}
|
|
972
|
+
));
|
|
973
|
+
});
|
|
974
|
+
|
|
953
975
|
const HeaderTemplateIcon = React__namespace.forwardRef((props, ref) => {
|
|
954
976
|
return /* @__PURE__ */ React__namespace.createElement(SvgIcon__default.default, { viewBox: "0 0 24 24", ...props, ref }, /* @__PURE__ */ React__namespace.createElement(
|
|
955
977
|
"path",
|
|
@@ -2253,6 +2275,7 @@ exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
|
2253
2275
|
exports.ChevronRightIcon = ChevronRightIcon;
|
|
2254
2276
|
exports.ChevronUpIcon = ChevronUpIcon;
|
|
2255
2277
|
exports.CircleCheckFilledIcon = CircleCheckFilledIcon;
|
|
2278
|
+
exports.CircleMinusIcon = CircleMinusIcon;
|
|
2256
2279
|
exports.CirclePlusIcon = CirclePlusIcon;
|
|
2257
2280
|
exports.CircleXIcon = CircleXIcon;
|
|
2258
2281
|
exports.ClearIcon = ClearIcon;
|
|
@@ -2291,6 +2314,7 @@ exports.FilesIcon = FilesIcon;
|
|
|
2291
2314
|
exports.FolderIcon = FolderIcon;
|
|
2292
2315
|
exports.FooterTemplateIcon = FooterTemplateIcon;
|
|
2293
2316
|
exports.GridDotsIcon = GridDotsIcon;
|
|
2317
|
+
exports.GripVerticalIcon = GripVerticalIcon;
|
|
2294
2318
|
exports.HeaderTemplateIcon = HeaderTemplateIcon;
|
|
2295
2319
|
exports.HeadsetIcon = HeadsetIcon;
|
|
2296
2320
|
exports.HeartHandShakeIcon = HeartHandShakeIcon;
|