@ozen-ui/icons 0.72.0 → 0.72.1

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.
@@ -0,0 +1,22 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="24"
4
+ height="24"
5
+ fill="none"
6
+ viewBox="0 0 24 24"
7
+ >
8
+ <path
9
+ fill="currentColor"
10
+ fill-rule="evenodd"
11
+ d="M3.25 4c0-.966.784-1.75 1.75-1.75h9a.75.75 0 0 1 .53.22l6 6c.141.14.22.331.22.53v2a.75.75 0 0 1-1.5 0V9.75H15A1.75 1.75 0 0 1 13.25 8V3.75H5a.25.25 0 0 0-.25.25v16c0 .138.112.25.25.25h5a.75.75 0 0 1 0 1.5H5A1.75 1.75 0 0 1 3.25 20zm11.5.81 3.44 3.44H15a.25.25 0 0 1-.25-.25zM16 12.75a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5M10.25 17a5.75 5.75 0 1 1 11.5 0 5.75 5.75 0 0 1-11.5 0"
12
+ clip-rule="evenodd"
13
+ />
14
+ <path
15
+ fill="currentColor"
16
+ d="M15 14.5a.75.75 0 0 1 1.5 0v2.44l1.53 1.53.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052-1.75-1.75a.75.75 0 0 1-.22-.53z"
17
+ />
18
+ <path
19
+ fill="currentColor"
20
+ d="M20.25 17a4.25 4.25 0 1 0-8.5 0 4.25 4.25 0 0 0 8.5 0m1.5 0a5.75 5.75 0 1 1-11.5 0 5.75 5.75 0 0 1 11.5 0"
21
+ />
22
+ </svg>
@@ -0,0 +1,22 @@
1
+ <svg
2
+ xmlns="http://www.w3.org/2000/svg"
3
+ width="16"
4
+ height="16"
5
+ fill="none"
6
+ viewBox="0 0 16 16"
7
+ >
8
+ <path
9
+ fill="currentColor"
10
+ fill-rule="evenodd"
11
+ d="M1.25 2.222c0-.84.698-1.472 1.5-1.472H9.5a.75.75 0 0 1 .52.21l4.5 4.333a.75.75 0 0 1 .23.54v1.445a.75.75 0 0 1-1.5 0v-.695h-3c-.802 0-1.5-.632-1.5-1.472V2.25h-6v11.5H5.5a.75.75 0 0 1 0 1.5H2.75c-.802 0-1.5-.633-1.5-1.472zm9 1.041 1.89 1.82h-1.89z"
12
+ clip-rule="evenodd"
13
+ />
14
+ <path
15
+ fill="currentColor"
16
+ d="M13.25 11.5a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0m1.5 0a4.25 4.25 0 1 1-8.5 0 4.25 4.25 0 0 1 8.5 0"
17
+ />
18
+ <path
19
+ fill="currentColor"
20
+ d="M9.75 10.5a.75.75 0 0 1 1.5 0v1.19l.28.28.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052-.5-.5a.75.75 0 0 1-.22-.53z"
21
+ />
22
+ </svg>
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IconProps } from '../types';
3
+ export declare const DebtIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DebtIcon = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
+ var DebtMIcon_1 = require("./DebtMIcon");
7
+ var DebtSIcon_1 = require("./DebtSIcon");
8
+ exports.DebtIcon = (0, react_1.forwardRef)(function (_a, ref) {
9
+ var size = _a.size, otherProps = tslib_1.__rest(_a, ["size"]);
10
+ switch (size) {
11
+ case 's':
12
+ return react_1.default.createElement(DebtSIcon_1.DebtSIcon, tslib_1.__assign({}, otherProps, { ref: ref }));
13
+ case 'm':
14
+ return react_1.default.createElement(DebtMIcon_1.DebtMIcon, tslib_1.__assign({}, otherProps, { ref: ref }));
15
+ default:
16
+ return react_1.default.createElement(DebtMIcon_1.DebtMIcon, tslib_1.__assign({}, otherProps, { ref: ref }));
17
+ }
18
+ });
19
+ exports.DebtIcon.displayName = 'DebtIcon';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const DebtMIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DebtMIcon = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
+ exports.DebtMIcon = (0, react_1.forwardRef)(function (props, ref) { return (react_1.default.createElement("svg", tslib_1.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24" }, props, { ref: ref }),
7
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M3.25 4c0-.966.784-1.75 1.75-1.75h9a.75.75 0 0 1 .53.22l6 6c.141.14.22.331.22.53v2a.75.75 0 0 1-1.5 0V9.75H15A1.75 1.75 0 0 1 13.25 8V3.75H5a.25.25 0 0 0-.25.25v16c0 .138.112.25.25.25h5a.75.75 0 0 1 0 1.5H5A1.75 1.75 0 0 1 3.25 20zm11.5.81 3.44 3.44H15a.25.25 0 0 1-.25-.25zM16 12.75a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5M10.25 17a5.75 5.75 0 1 1 11.5 0 5.75 5.75 0 0 1-11.5 0", clipRule: "evenodd" }),
8
+ react_1.default.createElement("path", { fill: "currentColor", d: "M15 14.5a.75.75 0 0 1 1.5 0v2.44l1.53 1.53.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052-1.75-1.75a.75.75 0 0 1-.22-.53z" }),
9
+ react_1.default.createElement("path", { fill: "currentColor", d: "M20.25 17a4.25 4.25 0 1 0-8.5 0 4.25 4.25 0 0 0 8.5 0m1.5 0a5.75 5.75 0 1 1-11.5 0 5.75 5.75 0 0 1 11.5 0" }))); });
10
+ exports.DebtMIcon.displayName = 'DebtMIcon';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const DebtSIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DebtSIcon = void 0;
4
+ var tslib_1 = require("tslib");
5
+ var react_1 = tslib_1.__importStar(require("react"));
6
+ exports.DebtSIcon = (0, react_1.forwardRef)(function (props, ref) { return (react_1.default.createElement("svg", tslib_1.__assign({ xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", fill: "none", viewBox: "0 0 16 16" }, props, { ref: ref }),
7
+ react_1.default.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M1.25 2.222c0-.84.698-1.472 1.5-1.472H9.5a.75.75 0 0 1 .52.21l4.5 4.333a.75.75 0 0 1 .23.54v1.445a.75.75 0 0 1-1.5 0v-.695h-3c-.802 0-1.5-.632-1.5-1.472V2.25h-6v11.5H5.5a.75.75 0 0 1 0 1.5H2.75c-.802 0-1.5-.633-1.5-1.472zm9 1.041 1.89 1.82h-1.89z", clipRule: "evenodd" }),
8
+ react_1.default.createElement("path", { fill: "currentColor", d: "M13.25 11.5a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0m1.5 0a4.25 4.25 0 1 1-8.5 0 4.25 4.25 0 0 1 8.5 0" }),
9
+ react_1.default.createElement("path", { fill: "currentColor", d: "M9.75 10.5a.75.75 0 0 1 1.5 0v1.19l.28.28.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052-.5-.5a.75.75 0 0 1-.22-.53z" }))); });
10
+ exports.DebtSIcon.displayName = 'DebtSIcon';
@@ -0,0 +1 @@
1
+ export { DebtIcon } from './DebtIcon';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DebtIcon = void 0;
4
+ var DebtIcon_1 = require("./DebtIcon");
5
+ Object.defineProperty(exports, "DebtIcon", { enumerable: true, get: function () { return DebtIcon_1.DebtIcon; } });
@@ -556,6 +556,7 @@ export { LikeIcon } from './LikeIcon';
556
556
  export { LoadingFailedIcon } from './LoadingFailedIcon';
557
557
  export { TaxesIcon } from './TaxesIcon';
558
558
  export { CustodialWalletIcon } from './CustodialWalletIcon';
559
+ export { DebtIcon } from './DebtIcon';
559
560
  export { MainIcon } from './MainIcon';
560
561
  export { ArrowSmallLeftIcon } from './ArrowSmallLeftIcon';
561
562
  export { ChevronSmallLeftIcon } from './ChevronSmallLeftIcon';
package/dist/cjs/index.js CHANGED
@@ -11,9 +11,9 @@ exports.EuroIcon = exports.FrankIcon = exports.YuanIcon = exports.FrozenIcon = e
11
11
  exports.FundFilledIcon = exports.FundIcon = exports.ProfileIcon = exports.TechChatIcon = exports.CommentIcon = exports.ChatMessageIcon = exports.ChatInfoIcon = exports.LightIcon = exports.BoxIcon = exports.CallActiveIcon = exports.KeyboardMobileIcon = exports.TransferIcon = exports.CardGridIcon = exports.CatalogIcon = exports.ChatMessageFilledIcon = exports.ArrowDownIcon = exports.TurnRightIcon = exports.ArrowUpIcon = exports.RoubleCircleFilledIcon = exports.RoubleCircleOutlineIcon = exports.ImageIcon = exports.SecurityIcon = exports.ShareIcon = exports.FlameIcon = exports.BurgerIcon = exports.UploadCloudIcon = exports.SoundOffIcon = exports.SoundOnIcon = exports.VideoOffIcon = exports.VideoOnIcon = exports.MicOnIcon = exports.MicOffIcon = exports.RotateRightIcon = exports.RotateLeftIcon = exports.FilterClearIcon = exports.LocationIcon = exports.TasksIcon = exports.PlasticCardAddIcon = exports.PlasticCardSavedIcon = exports.PlasticCardFilledIcon = exports.PlasticCardActiveIcon = exports.PlasticCardIcon = exports.DigitalCardIcon = exports.LeadIcon = exports.FolderOpenIcon = exports.LiraIcon = exports.GbpIcon = exports.CanadianDollarIcon = exports.AustralianDollarIcon = exports.DollarIcon = void 0;
12
12
  exports.ArrowRightCircleIcon = exports.TariffIcon = exports.CaseIcon = exports.CaseDiagramIcon = exports.BuildingIcon = exports.CartWheelFilledIcon = exports.CartWheelOutlineIcon = exports.BerekeIcon = exports.BoltIcon = exports.TextSharpIcon = exports.Number09Icon = exports.Number06Icon = exports.Number03Icon = exports.Number00Icon = exports.Number08Icon = exports.Number05Icon = exports.Number02Icon = exports.TextStarIcon = exports.Number07Icon = exports.Number04Icon = exports.Number01Icon = exports.CallEndIcon = exports.FingerprintIcon = exports.LabelIcon = exports.GiftIcon = exports.PromoIcon = exports.EventIcon = exports.WindowIcon = exports.DevicesIcon = exports.SupportIcon = exports.Face2Icon = exports.GroupUserIcon = exports.ImageGalleryIcon = exports.AccountIcon = exports.CartHandIcon = exports.BarcodeScanIcon = exports.CardScanIcon = exports.BarcodeIcon = exports.StatisticIcon = exports.WidgetIcon = exports.TemplatesIcon = exports.FilledNfcIcon = exports.BillIcon = exports.GlobeIcon = exports.RateIcon = exports.AlertOffIcon = exports.AlertOnIcon = exports.DashboardIcon = exports.LimitsIcon = exports.RequestIcon = void 0;
13
13
  exports.CalculatorIcon = exports.CameraScanIcon = exports.UserStrokeCheckIcon = exports.GlobeIncomeIcon = exports.ArrowRightTopIcon = exports.ArrowRightBottomIcon = exports.LanguageIcon = exports.CallTerminatedIcon = exports.MultiAccountIcon = exports.KronaIcon = exports.GlassesIcon = exports.AtmIcon = exports.PlaneIcon = exports.LeafIcon = exports.ModeIcon = exports.CalendarMortgageIcon = exports.ArrowTransferDiagonalIcon = exports.CoinShareIcon = exports.DownloadFileIcon = exports.UploadFileIcon = exports.ShoppingBagIcon = exports.KeyIcon = exports.BookPenIcon = exports.WashingIcon = exports.StudyIcon = exports.HammerIcon = exports.LampIcon = exports.BoatIcon = exports.UserStrokeIcon = exports.UserStrokePlusIcon = exports.UserGroupIcon = exports.ThreeLinesIcon = exports.TextIcon = exports.SafeIcon = exports.PlusSmallIcon = exports.PinOnIcon = exports.PinOffIcon = exports.PercentFilledIcon = exports.NumberIcon = exports.FlagIcon = exports.CoinDownIcon = exports.MapIcon = exports.ListIcon = exports.KeyboardDesktopIcon = exports.GridIcon = exports.CrossSmallIcon = exports.CircleFillIcon = exports.CarIcon = exports.BagIcon = exports.ArrowRightRectangleIcon = void 0;
14
- exports.CheckCircleColoredIcon = exports.ErrorCircleGhostColoredIcon = exports.ErrorCircleColoredIcon = exports.UnlockIcon = exports.LockIcon = exports.FunnelFilledIcon = exports.FunnelIcon = exports.PinIcon = exports.UnpinIcon = exports.ScanIcon = exports.TrendsIcon = exports.Suitcase2Icon = exports.Suitcase1Icon = exports.UserFilledIcon = exports.UserIcon = exports.TimeFilledIcon = exports.TimeIcon = exports.TickDoubleIcon = exports.TickIcon = exports.Cart2FilledIcon = exports.Cart2OutlineIcon = exports.ShopIcon = exports.ScanCardIcon = exports.KeyboardIcon = exports.OpenEyesIcon = exports.FlashIcon = exports.ErrorCircleOutlineIcon = exports.ErrorCircleFilledIcon = exports.EqualizerIcon = exports.ArchiveIcon = exports.CloseIcon = exports.CloseEyesIcon = exports.BankIcon = exports.ChevronSmallUpIcon = exports.ArrowSmallUpIcon = exports.ChevronSmallDownIcon = exports.ArrowSmallDownIcon = exports.ChevronSmallRightIcon = exports.ArrowSmallRightIcon = exports.ChevronSmallLeftIcon = exports.ArrowSmallLeftIcon = exports.MainIcon = exports.CustodialWalletIcon = exports.TaxesIcon = exports.LoadingFailedIcon = exports.LikeIcon = exports.FlashDriverIcon = exports.SmsIcon = exports.TelemedicineIcon = exports.FineIcon = void 0;
15
- exports.BrGarminIcon = exports.BrBerekeFilledIcon = exports.BrBerekeFilledColoredIcon = exports.BrN1BrokerIcon = exports.BrN1BrokernColoredIcon = exports.BrFacebookFilledColoredIcon = exports.BrFacebookFilledIcon = exports.BrFacebookColoredIcon = exports.BrFacebookIcon = exports.BrKoronaIcon = exports.BrKoronaColoredIcon = exports.BrInstagramOutlineColoredIcon = exports.BrInstagramFilledColoredIcon = exports.BrInstagramFilledIcon = exports.BrInstagramOutlineIcon = exports.BrFaceIdIcon = exports.BrFaceIdColoredIcon = exports.BrVisaAliasIcon = exports.BrVisaAliasColoredIcon = exports.BrSamsungPay2Icon = exports.BrSamsungPay2ColoredIcon = exports.BrCardMaestroIcon = exports.BrCardMastercardIcon = exports.BrCardMastercardColoredIcon = exports.BrCardVisaIcon = exports.BrCardVisaColoredIcon = exports.BrGoogleIcon = exports.BrGoogleColoredIcon = exports.BrVkIcon = exports.BrVkColoredIcon = exports.BrTwitterIcon = exports.BrTwitterColoredIcon = exports.BrWhatsAppIcon = exports.BrWhatsAppColoredIcon = exports.BrApplePayColoredIcon = exports.BrSamsungPayIcon = exports.BrSamsungPayColoredIcon = exports.BrGooglePayIcon = exports.BrGooglePayDarkColoredIcon = exports.BrGooglePayLightColoredIcon = exports.BrTelegramIcon = exports.BrTelegramColoredIcon = exports.BrCardMaestroColoredIcon = exports.ReloadCircleGhostColoredIcon = exports.ReloadCircleColoredIcon = exports.WarningTriangleGhostColoredIcon = exports.WarningTriangleColoredIcon = exports.InfoCircleGhostColoredIcon = exports.InfoCircleColoredIcon = exports.CheckCircleGhostColoredIcon = void 0;
16
- exports.BrAppleWalletColoredIcon = exports.BrOzenColoredIcon = exports.BrOzenIcon = exports.BrEGovIcon = exports.BrEGovColoredIcon = exports.BrGarminColoredIcon = void 0;
14
+ exports.ErrorCircleGhostColoredIcon = exports.ErrorCircleColoredIcon = exports.UnlockIcon = exports.LockIcon = exports.FunnelFilledIcon = exports.FunnelIcon = exports.PinIcon = exports.UnpinIcon = exports.ScanIcon = exports.TrendsIcon = exports.Suitcase2Icon = exports.Suitcase1Icon = exports.UserFilledIcon = exports.UserIcon = exports.TimeFilledIcon = exports.TimeIcon = exports.TickDoubleIcon = exports.TickIcon = exports.Cart2FilledIcon = exports.Cart2OutlineIcon = exports.ShopIcon = exports.ScanCardIcon = exports.KeyboardIcon = exports.OpenEyesIcon = exports.FlashIcon = exports.ErrorCircleOutlineIcon = exports.ErrorCircleFilledIcon = exports.EqualizerIcon = exports.ArchiveIcon = exports.CloseIcon = exports.CloseEyesIcon = exports.BankIcon = exports.ChevronSmallUpIcon = exports.ArrowSmallUpIcon = exports.ChevronSmallDownIcon = exports.ArrowSmallDownIcon = exports.ChevronSmallRightIcon = exports.ArrowSmallRightIcon = exports.ChevronSmallLeftIcon = exports.ArrowSmallLeftIcon = exports.MainIcon = exports.DebtIcon = exports.CustodialWalletIcon = exports.TaxesIcon = exports.LoadingFailedIcon = exports.LikeIcon = exports.FlashDriverIcon = exports.SmsIcon = exports.TelemedicineIcon = exports.FineIcon = void 0;
15
+ exports.BrBerekeFilledIcon = exports.BrBerekeFilledColoredIcon = exports.BrN1BrokerIcon = exports.BrN1BrokernColoredIcon = exports.BrFacebookFilledColoredIcon = exports.BrFacebookFilledIcon = exports.BrFacebookColoredIcon = exports.BrFacebookIcon = exports.BrKoronaIcon = exports.BrKoronaColoredIcon = exports.BrInstagramOutlineColoredIcon = exports.BrInstagramFilledColoredIcon = exports.BrInstagramFilledIcon = exports.BrInstagramOutlineIcon = exports.BrFaceIdIcon = exports.BrFaceIdColoredIcon = exports.BrVisaAliasIcon = exports.BrVisaAliasColoredIcon = exports.BrSamsungPay2Icon = exports.BrSamsungPay2ColoredIcon = exports.BrCardMaestroIcon = exports.BrCardMastercardIcon = exports.BrCardMastercardColoredIcon = exports.BrCardVisaIcon = exports.BrCardVisaColoredIcon = exports.BrGoogleIcon = exports.BrGoogleColoredIcon = exports.BrVkIcon = exports.BrVkColoredIcon = exports.BrTwitterIcon = exports.BrTwitterColoredIcon = exports.BrWhatsAppIcon = exports.BrWhatsAppColoredIcon = exports.BrApplePayColoredIcon = exports.BrSamsungPayIcon = exports.BrSamsungPayColoredIcon = exports.BrGooglePayIcon = exports.BrGooglePayDarkColoredIcon = exports.BrGooglePayLightColoredIcon = exports.BrTelegramIcon = exports.BrTelegramColoredIcon = exports.BrCardMaestroColoredIcon = exports.ReloadCircleGhostColoredIcon = exports.ReloadCircleColoredIcon = exports.WarningTriangleGhostColoredIcon = exports.WarningTriangleColoredIcon = exports.InfoCircleGhostColoredIcon = exports.InfoCircleColoredIcon = exports.CheckCircleGhostColoredIcon = exports.CheckCircleColoredIcon = void 0;
16
+ exports.BrAppleWalletColoredIcon = exports.BrOzenColoredIcon = exports.BrOzenIcon = exports.BrEGovIcon = exports.BrEGovColoredIcon = exports.BrGarminColoredIcon = exports.BrGarminIcon = void 0;
17
17
  var tslib_1 = require("tslib");
18
18
  var FlagUsIcon_1 = require("./FlagUsIcon");
19
19
  Object.defineProperty(exports, "FlagUsIcon", { enumerable: true, get: function () { return FlagUsIcon_1.FlagUsIcon; } });
@@ -1131,6 +1131,8 @@ var TaxesIcon_1 = require("./TaxesIcon");
1131
1131
  Object.defineProperty(exports, "TaxesIcon", { enumerable: true, get: function () { return TaxesIcon_1.TaxesIcon; } });
1132
1132
  var CustodialWalletIcon_1 = require("./CustodialWalletIcon");
1133
1133
  Object.defineProperty(exports, "CustodialWalletIcon", { enumerable: true, get: function () { return CustodialWalletIcon_1.CustodialWalletIcon; } });
1134
+ var DebtIcon_1 = require("./DebtIcon");
1135
+ Object.defineProperty(exports, "DebtIcon", { enumerable: true, get: function () { return DebtIcon_1.DebtIcon; } });
1134
1136
  var MainIcon_1 = require("./MainIcon");
1135
1137
  Object.defineProperty(exports, "MainIcon", { enumerable: true, get: function () { return MainIcon_1.MainIcon; } });
1136
1138
  var ArrowSmallLeftIcon_1 = require("./ArrowSmallLeftIcon");
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import type { IconProps } from '../types';
3
+ export declare const DebtIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,16 @@
1
+ import { __assign, __rest } from "tslib";
2
+ import React, { forwardRef } from 'react';
3
+ import { DebtMIcon } from './DebtMIcon';
4
+ import { DebtSIcon } from './DebtSIcon';
5
+ export var DebtIcon = forwardRef(function (_a, ref) {
6
+ var size = _a.size, otherProps = __rest(_a, ["size"]);
7
+ switch (size) {
8
+ case 's':
9
+ return React.createElement(DebtSIcon, __assign({}, otherProps, { ref: ref }));
10
+ case 'm':
11
+ return React.createElement(DebtMIcon, __assign({}, otherProps, { ref: ref }));
12
+ default:
13
+ return React.createElement(DebtMIcon, __assign({}, otherProps, { ref: ref }));
14
+ }
15
+ });
16
+ DebtIcon.displayName = 'DebtIcon';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const DebtMIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { __assign } from "tslib";
2
+ import React, { forwardRef } from 'react';
3
+ export var DebtMIcon = forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", fill: "none", viewBox: "0 0 24 24" }, props, { ref: ref }),
4
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M3.25 4c0-.966.784-1.75 1.75-1.75h9a.75.75 0 0 1 .53.22l6 6c.141.14.22.331.22.53v2a.75.75 0 0 1-1.5 0V9.75H15A1.75 1.75 0 0 1 13.25 8V3.75H5a.25.25 0 0 0-.25.25v16c0 .138.112.25.25.25h5a.75.75 0 0 1 0 1.5H5A1.75 1.75 0 0 1 3.25 20zm11.5.81 3.44 3.44H15a.25.25 0 0 1-.25-.25zM16 12.75a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5M10.25 17a5.75 5.75 0 1 1 11.5 0 5.75 5.75 0 0 1-11.5 0", clipRule: "evenodd" }),
5
+ React.createElement("path", { fill: "currentColor", d: "M15 14.5a.75.75 0 0 1 1.5 0v2.44l1.53 1.53.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052-1.75-1.75a.75.75 0 0 1-.22-.53z" }),
6
+ React.createElement("path", { fill: "currentColor", d: "M20.25 17a4.25 4.25 0 1 0-8.5 0 4.25 4.25 0 0 0 8.5 0m1.5 0a5.75 5.75 0 1 1-11.5 0 5.75 5.75 0 0 1 11.5 0" }))); });
7
+ DebtMIcon.displayName = 'DebtMIcon';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const DebtSIcon: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,7 @@
1
+ import { __assign } from "tslib";
2
+ import React, { forwardRef } from 'react';
3
+ export var DebtSIcon = forwardRef(function (props, ref) { return (React.createElement("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", fill: "none", viewBox: "0 0 16 16" }, props, { ref: ref }),
4
+ React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M1.25 2.222c0-.84.698-1.472 1.5-1.472H9.5a.75.75 0 0 1 .52.21l4.5 4.333a.75.75 0 0 1 .23.54v1.445a.75.75 0 0 1-1.5 0v-.695h-3c-.802 0-1.5-.632-1.5-1.472V2.25h-6v11.5H5.5a.75.75 0 0 1 0 1.5H2.75c-.802 0-1.5-.633-1.5-1.472zm9 1.041 1.89 1.82h-1.89z", clipRule: "evenodd" }),
5
+ React.createElement("path", { fill: "currentColor", d: "M13.25 11.5a2.75 2.75 0 1 0-5.5 0 2.75 2.75 0 0 0 5.5 0m1.5 0a4.25 4.25 0 1 1-8.5 0 4.25 4.25 0 0 1 8.5 0" }),
6
+ React.createElement("path", { fill: "currentColor", d: "M9.75 10.5a.75.75 0 0 1 1.5 0v1.19l.28.28.052.056a.75.75 0 0 1-1.056 1.056l-.056-.052-.5-.5a.75.75 0 0 1-.22-.53z" }))); });
7
+ DebtSIcon.displayName = 'DebtSIcon';
@@ -0,0 +1 @@
1
+ export { DebtIcon } from './DebtIcon';
@@ -0,0 +1 @@
1
+ export { DebtIcon } from './DebtIcon';
@@ -556,6 +556,7 @@ export { LikeIcon } from './LikeIcon';
556
556
  export { LoadingFailedIcon } from './LoadingFailedIcon';
557
557
  export { TaxesIcon } from './TaxesIcon';
558
558
  export { CustodialWalletIcon } from './CustodialWalletIcon';
559
+ export { DebtIcon } from './DebtIcon';
559
560
  export { MainIcon } from './MainIcon';
560
561
  export { ArrowSmallLeftIcon } from './ArrowSmallLeftIcon';
561
562
  export { ChevronSmallLeftIcon } from './ChevronSmallLeftIcon';
package/dist/esm/index.js CHANGED
@@ -556,6 +556,7 @@ export { LikeIcon } from './LikeIcon';
556
556
  export { LoadingFailedIcon } from './LoadingFailedIcon';
557
557
  export { TaxesIcon } from './TaxesIcon';
558
558
  export { CustodialWalletIcon } from './CustodialWalletIcon';
559
+ export { DebtIcon } from './DebtIcon';
559
560
  export { MainIcon } from './MainIcon';
560
561
  export { ArrowSmallLeftIcon } from './ArrowSmallLeftIcon';
561
562
  export { ChevronSmallLeftIcon } from './ChevronSmallLeftIcon';
package/manifest.json CHANGED
@@ -4222,6 +4222,14 @@
4222
4222
  "colored": false,
4223
4223
  "deprecated": false
4224
4224
  },
4225
+ {
4226
+ "name": "debt_icon",
4227
+ "size": ["s", "m"],
4228
+ "category": "Action",
4229
+ "componentName": "DebtIcon",
4230
+ "colored": false,
4231
+ "deprecated": false
4232
+ },
4225
4233
  {
4226
4234
  "name": "main_icon",
4227
4235
  "size": ["s", "m"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ozen-ui/icons",
3
- "version": "0.72.0",
3
+ "version": "0.72.1",
4
4
  "description": "A collection of icons",
5
5
  "license": "MIT",
6
6
  "main": "dist/cjs/index.js",
@@ -21,7 +21,7 @@
21
21
  "*.svg"
22
22
  ],
23
23
  "dependencies": {
24
- "@ozen-ui/logger": "0.72.0"
24
+ "@ozen-ui/logger": "0.72.1"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "react": ">=17.0.2 <19.0.0"