@elementor/icons 1.16.0 → 1.17.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/MinusIcon/index.d.ts +4 -0
- package/MinusIcon/index.esm.js +10 -0
- package/MinusIcon/index.esm.js.map +1 -0
- package/MinusIcon/index.js +37 -0
- package/MinusIcon/index.js.map +1 -0
- package/MinusIcon/package.json +7 -0
- package/index.d.ts +1 -0
- package/index.esm.js +6 -1
- package/index.esm.js.map +1 -1
- package/index.js +6 -0
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -313,6 +313,11 @@ const MinimizeDiagonalIcon = React__namespace.forwardRef((props, ref) => {
|
|
|
313
313
|
React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.46967 3.46967C3.76256 3.17678 4.23744 3.17678 4.53033 3.46967L9.25 8.18934V6C9.25 5.58579 9.58579 5.25 10 5.25C10.4142 5.25 10.75 5.58579 10.75 6V10C10.75 10.4142 10.4142 10.75 10 10.75H6C5.58579 10.75 5.25 10.4142 5.25 10C5.25 9.58579 5.58579 9.25 6 9.25H8.18934L3.46967 4.53033C3.17678 4.23744 3.17678 3.76256 3.46967 3.46967ZM14 13.25H18C18.4142 13.25 18.75 13.5858 18.75 14C18.75 14.4142 18.4142 14.75 18 14.75H15.8107L20.5303 19.4697C20.8232 19.7626 20.8232 20.2374 20.5303 20.5303C20.2374 20.8232 19.7626 20.8232 19.4697 20.5303L14.75 15.8107V18C14.75 18.4142 14.4142 18.75 14 18.75C13.5858 18.75 13.25 18.4142 13.25 18V14C13.25 13.5858 13.5858 13.25 14 13.25Z" })));
|
|
314
314
|
});
|
|
315
315
|
|
|
316
|
+
const MinusIcon = React__namespace.forwardRef((props, ref) => {
|
|
317
|
+
return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
318
|
+
React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.19995 12.0498C4.19995 11.6356 4.53574 11.2998 4.94995 11.2998H18.95C19.3642 11.2998 19.7 11.6356 19.7 12.0498C19.7 12.464 19.3642 12.7998 18.95 12.7998H4.94995C4.53574 12.7998 4.19995 12.464 4.19995 12.0498Z" })));
|
|
319
|
+
});
|
|
320
|
+
|
|
316
321
|
const MobileIcon = React__namespace.forwardRef((props, ref) => {
|
|
317
322
|
return (React__namespace.createElement(SvgIcon__default["default"], { viewBox: "0 0 24 24", ...props, ref: ref },
|
|
318
323
|
React__namespace.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.66667 4.25C8.24587 4.25 7.75 4.66893 7.75 5.38889V18.6111C7.75 19.3311 8.24587 19.75 8.66667 19.75H15.3333C15.7541 19.75 16.25 19.3311 16.25 18.6111V5.38889C16.25 4.66893 15.7541 4.25 15.3333 4.25H13.7073C13.735 4.32819 13.75 4.41234 13.75 4.5C13.75 4.91421 13.4142 5.25 13 5.25H11C10.5858 5.25 10.25 4.91421 10.25 4.5C10.25 4.41234 10.265 4.32819 10.2927 4.25H8.66667ZM6.25 5.38889C6.25 4.02244 7.24652 2.75 8.66667 2.75H15.3333C16.7535 2.75 17.75 4.02244 17.75 5.38889V18.6111C17.75 19.9776 16.7535 21.25 15.3333 21.25H8.66667C7.24652 21.25 6.25 19.9776 6.25 18.6111V5.38889Z" })));
|
|
@@ -635,6 +640,7 @@ exports.LoopItemTemplateIcon = LoopItemTemplateIcon;
|
|
|
635
640
|
exports.MailIcon = MailIcon;
|
|
636
641
|
exports.MessageIcon = MessageIcon;
|
|
637
642
|
exports.MinimizeDiagonalIcon = MinimizeDiagonalIcon;
|
|
643
|
+
exports.MinusIcon = MinusIcon;
|
|
638
644
|
exports.MobileIcon = MobileIcon;
|
|
639
645
|
exports.MobileLandscapeIcon = MobileLandscapeIcon;
|
|
640
646
|
exports.MobilePortraitIcon = MobilePortraitIcon;
|