@elementor/icons 1.28.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/index.d.ts +1 -0
- package/index.esm.js +12 -1
- package/index.esm.js.map +1 -1
- package/index.js +12 -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",
|
|
@@ -2264,6 +2275,7 @@ exports.ChevronLeftIcon = ChevronLeftIcon;
|
|
|
2264
2275
|
exports.ChevronRightIcon = ChevronRightIcon;
|
|
2265
2276
|
exports.ChevronUpIcon = ChevronUpIcon;
|
|
2266
2277
|
exports.CircleCheckFilledIcon = CircleCheckFilledIcon;
|
|
2278
|
+
exports.CircleMinusIcon = CircleMinusIcon;
|
|
2267
2279
|
exports.CirclePlusIcon = CirclePlusIcon;
|
|
2268
2280
|
exports.CircleXIcon = CircleXIcon;
|
|
2269
2281
|
exports.ClearIcon = ClearIcon;
|