@nikaat-crop/es-icons 0.0.9 → 0.4.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/README.md CHANGED
@@ -16,7 +16,7 @@ A comprehensive collection of beautiful and modern SVG icons specifically design
16
16
  </p>
17
17
  </div>
18
18
 
19
- ## 📸 Preview
19
+ ## 📸 Demo
20
20
 
21
21
  <div align="center">
22
22
  <img src="./assets/preview.png" alt="ES Icons Preview" width="100%" />
@@ -94,6 +94,70 @@ import * as Icons from '@nikaat-crop/es-icons';
94
94
 
95
95
  And many more! Check out the [full documentation](https://es-icons.vercel.app/) for a complete list.
96
96
 
97
+ ## ➕ Adding New Icons
98
+
99
+ Want to contribute a new icon to the collection? Follow these simple steps:
100
+
101
+ ### Step 1: Prepare Your SVG
102
+ 1. Place your SVG file in the `src/svgs/` directory
103
+ 2. **Important guidelines:**
104
+ - Set the icon size to **24×24 pixels**
105
+ - Use `#000` (black) for colors that should be customizable from outside
106
+ - Ensure the SVG is optimized and clean
107
+
108
+ ```xml
109
+ <!-- ✅ Good example -->
110
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
111
+ <path d="M12 2L2 7V10C2 16 6 20.5 12 22C18 20.5 22 16 22 10V7L12 2Z" fill="#000"/>
112
+ </svg>
113
+
114
+ <!-- ❌ Avoid fixed colors if you want them to be customizable -->
115
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
116
+ <path d="M12 2L2 7V10C2 16 6 20.5 12 22C18 20.5 22 16 22 10V7L12 2Z" fill="#3B82F6"/>
117
+ </svg>
118
+ ```
119
+
120
+ ### Step 2: Generate React Component
121
+ Run the icon generation script to automatically create the React component:
122
+
123
+ ```bash
124
+ npm run icons:generate
125
+ ```
126
+
127
+ This command will:
128
+ - Convert your SVG to a React component using SVGR
129
+ - Add TypeScript definitions
130
+ - Update the main exports in `src/index.ts`
131
+
132
+ ### Step 3: Update Storybook
133
+ Add your new icon to the Storybook gallery by importing it in `src/stories/icons.stories.tsx`:
134
+
135
+ ```tsx
136
+ // Add your import
137
+ import { YourNewIcon } from '../index';
138
+
139
+ // Add to the icons array
140
+ const icons = [
141
+ // ... existing icons
142
+ { name: 'YourNewIcon', component: YourNewIcon },
143
+ ];
144
+ ```
145
+
146
+ ### Step 4: Test Your Icon
147
+ 1. Start Storybook to preview your icon:
148
+ ```bash
149
+ npm run storybook
150
+ ```
151
+ 2. Verify that your icon displays correctly
152
+ 3. Test that colors can be customized via props
153
+
154
+ ### Step 5: Publish (For Maintainers)
155
+ Once everything looks good, publish the updated package:
156
+
157
+ ```bash
158
+ npm run release
159
+ ```
160
+
97
161
  ## 🎨 Icon Props
98
162
 
99
163
  All icons accept standard SVG props:
package/dist/index.d.ts CHANGED
@@ -93,6 +93,8 @@ declare const SvgFullScreen: (props: SVGProps<SVGSVGElement>) => react_jsx_runti
93
93
 
94
94
  declare const SvgGift: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
95
95
 
96
+ declare const SvgGold: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
97
+
96
98
  declare const SvgGoldStar: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
97
99
 
98
100
  declare const SvgHamrahAval: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -113,10 +115,14 @@ declare const SvgLink: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX
113
115
 
114
116
  declare const SvgList: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
115
117
 
118
+ declare const SvgLock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
119
+
116
120
  declare const SvgMagnifier: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
117
121
 
118
122
  declare const SvgMinusCircle: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
119
123
 
124
+ declare const SvgMinusCircleOutlined: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
125
+
120
126
  declare const SvgMinus: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
121
127
 
122
128
  declare const SvgMoon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -145,6 +151,8 @@ declare const SvgPickture: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
145
151
 
146
152
  declare const SvgPlay: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
147
153
 
154
+ declare const SvgPlusCircle: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
155
+
148
156
  declare const SvgPlusFill: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
149
157
 
150
158
  declare const SvgPlus: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -153,8 +161,12 @@ declare const SvgPromissory: (props: SVGProps<SVGSVGElement>) => react_jsx_runti
153
161
 
154
162
  declare const SvgQuestion: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
155
163
 
164
+ declare const SvgReceive: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
165
+
156
166
  declare const SvgReload: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
157
167
 
168
+ declare const SvgReward: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
169
+
158
170
  declare const SvgRightel: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
159
171
 
160
172
  declare const SvgRules: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -211,6 +223,8 @@ declare const SvgServiceBillWater: (props: SVGProps<SVGSVGElement>) => react_jsx
211
223
 
212
224
  declare const SvgServiceBill: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
213
225
 
226
+ declare const SvgServiceBors: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
227
+
214
228
  declare const SvgServiceChargeInternetCharge: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
215
229
 
216
230
  declare const SvgServiceChargeInternetInternet: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -279,6 +293,8 @@ declare const SvgShare: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JS
279
293
 
280
294
  declare const SvgSimCard: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
281
295
 
296
+ declare const SvgSkenasFill: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
297
+
282
298
  declare const SvgSkenasIconName: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
283
299
 
284
300
  declare const SvgSkenasName: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -307,6 +323,8 @@ declare const SvgTrustWallet: (props: SVGProps<SVGSVGElement>) => react_jsx_runt
307
323
 
308
324
  declare const SvgTwoFa: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
309
325
 
326
+ declare const SvgUnlock: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
327
+
310
328
  declare const SvgUpload: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
311
329
 
312
330
  declare const SvgUser: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -315,8 +333,10 @@ declare const SvgVideo: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JS
315
333
 
316
334
  declare const SvgWalletDark: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
317
335
 
336
+ declare const SvgWalletFill: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
337
+
318
338
  declare const SvgWallet: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
319
339
 
320
340
  declare const SvgWarning: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
321
341
 
322
- export { SvgAi as Ai, SvgAndroidBold as AndroidBold, SvgArrow as Arrow, SvgArrowCircleDown as ArrowCircleDown, SvgArrowCircleUp as ArrowCircleUp, SvgArrowTiny as ArrowTiny, SvgBale as Bale, SvgBank as Bank, SvgBankCard as BankCard, SvgBill as Bill, SvgBtcGradient as BtcGradient, SvgBuy as Buy, SvgBuys as Buys, SvgCalcs as Calcs, SvgCalendar as Calendar, SvgCamera as Camera, SvgCandlestick as Candlestick, SvgCardByCard as CardByCard, SvgCategoryBank as CategoryBank, SvgCategoryBankConversions as CategoryBankConversions, SvgCategoryFinancial as CategoryFinancial, SvgCategoryInvestment as CategoryInvestment, SvgCategoryPractical as CategoryPractical, SvgCategorySaiiadCheque as CategorySaiiadCheque, SvgChart as Chart, SvgCheck as Check, SvgCheckCircle as CheckCircle, SvgCheque as Cheque, SvgChevron as Chevron, SvgCloseCircle as CloseCircle, SvgCopy as Copy, SvgCryptoLock as CryptoLock, SvgDanger as Danger, SvgDefectivePerson as DefectivePerson, SvgDownload as Download, SvgEdit as Edit, SvgEditSolid as EditSolid, SvgEskenas as Eskenas, SvgEskenasIcon as EskenasIcon, SvgExit as Exit, SvgEye as Eye, SvgFilledBarChart as FilledBarChart, SvgFilter as Filter, SvgFourDots as FourDots, SvgFullScreen as FullScreen, SvgGift as Gift, SvgGoldStar as GoldStar, SvgHamrahAval as HamrahAval, SvgHandPointer as HandPointer, SvgHistory as History, SvgHome as Home, SvgInfo as Info, SvgInquiry as Inquiry, SvgIrancell as Irancell, SvgLink as Link, SvgList as List, SvgMagnifier as Magnifier, SvgMinus as Minus, SvgMinusCircle as MinusCircle, SvgMoon as Moon, SvgMyPhone as MyPhone, SvgNationalCard as NationalCard, SvgNavArrow as NavArrow, SvgNoData as NoData, SvgNoEye as NoEye, SvgNormalChart as NormalChart, SvgPaper as Paper, SvgPencil as Pencil, SvgPerson as Person, SvgPersonTwo as PersonTwo, SvgPickture as Pickture, SvgPlay as Play, SvgPlus as Plus, SvgPlusFill as PlusFill, SvgPromissory as Promissory, SvgQuestion as Question, SvgReload as Reload, SvgRightel as Rightel, SvgRules as Rules, SvgScanner as Scanner, SvgSell as Sell, SvgServiceBankBalance as ServiceBankBalance, SvgServiceBankCardToDeposit as ServiceBankCardToDeposit, SvgServiceBankCardToIban as ServiceBankCardToIban, SvgServiceBankCheckColorStatus as ServiceBankCheckColorStatus, SvgServiceBankChequeColorStatus as ServiceBankChequeColorStatus, SvgServiceBankDepositToIban as ServiceBankDepositToIban, SvgServiceBankElectronicPromissoryNote as ServiceBankElectronicPromissoryNote, SvgServiceBankGetLoan as ServiceBankGetLoan, SvgServiceBankSaiiadCheckChainInquiryTransfers as ServiceBankSaiiadCheckChainInquiryTransfers, SvgServiceBankSaiiadCheque as ServiceBankSaiiadCheque, SvgServiceBankSaiiadChequeBook as ServiceBankSaiiadChequeBook, SvgServiceBankSaiiadChequeChainInquiryTransfers as ServiceBankSaiiadChequeChainInquiryTransfers, SvgServiceBankSaiiadChequeCheckbook as ServiceBankSaiiadChequeCheckbook, SvgServiceBankSaiiadChequeInquiryId as ServiceBankSaiiadChequeInquiryId, SvgServiceBankSaiiadIdReceive as ServiceBankSaiiadIdReceive, SvgServiceBankShahabCode as ServiceBankShahabCode, SvgServiceBankTransferMoney as ServiceBankTransferMoney, SvgServiceBill as ServiceBill, SvgServiceBillElectricity as ServiceBillElectricity, SvgServiceBillFixedLine as ServiceBillFixedLine, SvgServiceBillGas as ServiceBillGas, SvgServiceBillMobile as ServiceBillMobile, SvgServiceBillPropertyTax as ServiceBillPropertyTax, SvgServiceBillWater as ServiceBillWater, SvgServiceChargeInternetCharge as ServiceChargeInternetCharge, SvgServiceChargeInternetInternet as ServiceChargeInternetInternet, SvgServiceInquiryBankTransfer as ServiceInquiryBankTransfer, SvgServiceInquiryCredit as ServiceInquiryCredit, SvgServiceInquiryProperty as ServiceInquiryProperty, SvgServiceInquiryTrading as ServiceInquiryTrading, SvgServiceInquiryVehicle as ServiceInquiryVehicle, SvgServiceInvestmentCrowdfunding as ServiceInvestmentCrowdfunding, SvgServiceInvestmentCryptocurrency as ServiceInvestmentCryptocurrency, SvgServiceInvestmentGoldCoin as ServiceInvestmentGoldCoin, SvgServiceInvestmentInstantPrice as ServiceInvestmentInstantPrice, SvgServiceInvestmentMarket as ServiceInvestmentMarket, SvgServiceInvestmentStuckFund as ServiceInvestmentStuckFund, SvgServiceVehicleBike as ServiceVehicleBike, SvgServiceVehicleBikeActiveLicensePlates as ServiceVehicleBikeActiveLicensePlates, SvgServiceVehicleBikeAnnualVehicleTax as ServiceVehicleBikeAnnualVehicleTax, SvgServiceVehicleBikeBikeFinesInquiry as ServiceVehicleBikeBikeFinesInquiry, SvgServiceVehicleBikeBikeTransferTax as ServiceVehicleBikeBikeTransferTax, SvgServiceVehicleBikeHighwayTollCharges as ServiceVehicleBikeHighwayTollCharges, SvgServiceVehicleBikeLicenseNegativeScore as ServiceVehicleBikeLicenseNegativeScore, SvgServiceVehicleBikeLicensePlateHistory as ServiceVehicleBikeLicensePlateHistory, SvgServiceVehicleBikeLicenseStatus as ServiceVehicleBikeLicenseStatus, SvgServiceVehicleBikePlateHistory as ServiceVehicleBikePlateHistory, SvgServiceVehicleBikeTechnicalInspection as ServiceVehicleBikeTechnicalInspection, SvgServiceVehicleBikeThirdPartyInsuranceInquiry as ServiceVehicleBikeThirdPartyInsuranceInquiry, SvgServiceVehicleBikeTrafficPlanPermit as ServiceVehicleBikeTrafficPlanPermit, SvgServiceVehicleBikeVehicleDocuments as ServiceVehicleBikeVehicleDocuments, SvgServiceVehicleBikeVehicleFinesInquiry as ServiceVehicleBikeVehicleFinesInquiry, SvgServiceVehicleBikeVehicleHistoryInquiry as ServiceVehicleBikeVehicleHistoryInquiry, SvgServiceVehicleBikeVehicleTransferTax as ServiceVehicleBikeVehicleTransferTax, SvgServiceVehicleLicenseStatus as ServiceVehicleLicenseStatus, SvgSetting as Setting, SvgShare as Share, SvgSimCard as SimCard, SvgSkenasIconName as SkenasIconName, SvgSkenasName as SkenasName, SvgSpinner as Spinner, SvgStar as Star, SvgSun as Sun, SvgTelegram as Telegram, SvgThreeLine as ThreeLine, SvgThreePerson as ThreePerson, SvgTradingView as TradingView, SvgTransactions as Transactions, SvgTrash as Trash, SvgTrashSolid as TrashSolid, SvgTrustWallet as TrustWallet, SvgTwoFa as TwoFa, SvgUpload as Upload, SvgUser as User, SvgVideo as Video, SvgWallet as Wallet, SvgWalletDark as WalletDark, SvgWarning as Warning };
342
+ export { SvgAi as Ai, SvgAndroidBold as AndroidBold, SvgArrow as Arrow, SvgArrowCircleDown as ArrowCircleDown, SvgArrowCircleUp as ArrowCircleUp, SvgArrowTiny as ArrowTiny, SvgBale as Bale, SvgBank as Bank, SvgBankCard as BankCard, SvgBill as Bill, SvgBtcGradient as BtcGradient, SvgBuy as Buy, SvgBuys as Buys, SvgCalcs as Calcs, SvgCalendar as Calendar, SvgCamera as Camera, SvgCandlestick as Candlestick, SvgCardByCard as CardByCard, SvgCategoryBank as CategoryBank, SvgCategoryBankConversions as CategoryBankConversions, SvgCategoryFinancial as CategoryFinancial, SvgCategoryInvestment as CategoryInvestment, SvgCategoryPractical as CategoryPractical, SvgCategorySaiiadCheque as CategorySaiiadCheque, SvgChart as Chart, SvgCheck as Check, SvgCheckCircle as CheckCircle, SvgCheque as Cheque, SvgChevron as Chevron, SvgCloseCircle as CloseCircle, SvgCopy as Copy, SvgCryptoLock as CryptoLock, SvgDanger as Danger, SvgDefectivePerson as DefectivePerson, SvgDownload as Download, SvgEdit as Edit, SvgEditSolid as EditSolid, SvgEskenas as Eskenas, SvgEskenasIcon as EskenasIcon, SvgExit as Exit, SvgEye as Eye, SvgFilledBarChart as FilledBarChart, SvgFilter as Filter, SvgFourDots as FourDots, SvgFullScreen as FullScreen, SvgGift as Gift, SvgGold as Gold, SvgGoldStar as GoldStar, SvgHamrahAval as HamrahAval, SvgHandPointer as HandPointer, SvgHistory as History, SvgHome as Home, SvgInfo as Info, SvgInquiry as Inquiry, SvgIrancell as Irancell, SvgLink as Link, SvgList as List, SvgLock as Lock, SvgMagnifier as Magnifier, SvgMinus as Minus, SvgMinusCircle as MinusCircle, SvgMinusCircleOutlined as MinusCircleOutlined, SvgMoon as Moon, SvgMyPhone as MyPhone, SvgNationalCard as NationalCard, SvgNavArrow as NavArrow, SvgNoData as NoData, SvgNoEye as NoEye, SvgNormalChart as NormalChart, SvgPaper as Paper, SvgPencil as Pencil, SvgPerson as Person, SvgPersonTwo as PersonTwo, SvgPickture as Pickture, SvgPlay as Play, SvgPlus as Plus, SvgPlusCircle as PlusCircle, SvgPlusFill as PlusFill, SvgPromissory as Promissory, SvgQuestion as Question, SvgReceive as Receive, SvgReload as Reload, SvgReward as Reward, SvgRightel as Rightel, SvgRules as Rules, SvgScanner as Scanner, SvgSell as Sell, SvgServiceBankBalance as ServiceBankBalance, SvgServiceBankCardToDeposit as ServiceBankCardToDeposit, SvgServiceBankCardToIban as ServiceBankCardToIban, SvgServiceBankCheckColorStatus as ServiceBankCheckColorStatus, SvgServiceBankChequeColorStatus as ServiceBankChequeColorStatus, SvgServiceBankDepositToIban as ServiceBankDepositToIban, SvgServiceBankElectronicPromissoryNote as ServiceBankElectronicPromissoryNote, SvgServiceBankGetLoan as ServiceBankGetLoan, SvgServiceBankSaiiadCheckChainInquiryTransfers as ServiceBankSaiiadCheckChainInquiryTransfers, SvgServiceBankSaiiadCheque as ServiceBankSaiiadCheque, SvgServiceBankSaiiadChequeBook as ServiceBankSaiiadChequeBook, SvgServiceBankSaiiadChequeChainInquiryTransfers as ServiceBankSaiiadChequeChainInquiryTransfers, SvgServiceBankSaiiadChequeCheckbook as ServiceBankSaiiadChequeCheckbook, SvgServiceBankSaiiadChequeInquiryId as ServiceBankSaiiadChequeInquiryId, SvgServiceBankSaiiadIdReceive as ServiceBankSaiiadIdReceive, SvgServiceBankShahabCode as ServiceBankShahabCode, SvgServiceBankTransferMoney as ServiceBankTransferMoney, SvgServiceBill as ServiceBill, SvgServiceBillElectricity as ServiceBillElectricity, SvgServiceBillFixedLine as ServiceBillFixedLine, SvgServiceBillGas as ServiceBillGas, SvgServiceBillMobile as ServiceBillMobile, SvgServiceBillPropertyTax as ServiceBillPropertyTax, SvgServiceBillWater as ServiceBillWater, SvgServiceBors as ServiceBors, SvgServiceChargeInternetCharge as ServiceChargeInternetCharge, SvgServiceChargeInternetInternet as ServiceChargeInternetInternet, SvgServiceInquiryBankTransfer as ServiceInquiryBankTransfer, SvgServiceInquiryCredit as ServiceInquiryCredit, SvgServiceInquiryProperty as ServiceInquiryProperty, SvgServiceInquiryTrading as ServiceInquiryTrading, SvgServiceInquiryVehicle as ServiceInquiryVehicle, SvgServiceInvestmentCrowdfunding as ServiceInvestmentCrowdfunding, SvgServiceInvestmentCryptocurrency as ServiceInvestmentCryptocurrency, SvgServiceInvestmentGoldCoin as ServiceInvestmentGoldCoin, SvgServiceInvestmentInstantPrice as ServiceInvestmentInstantPrice, SvgServiceInvestmentMarket as ServiceInvestmentMarket, SvgServiceInvestmentStuckFund as ServiceInvestmentStuckFund, SvgServiceVehicleBike as ServiceVehicleBike, SvgServiceVehicleBikeActiveLicensePlates as ServiceVehicleBikeActiveLicensePlates, SvgServiceVehicleBikeAnnualVehicleTax as ServiceVehicleBikeAnnualVehicleTax, SvgServiceVehicleBikeBikeFinesInquiry as ServiceVehicleBikeBikeFinesInquiry, SvgServiceVehicleBikeBikeTransferTax as ServiceVehicleBikeBikeTransferTax, SvgServiceVehicleBikeHighwayTollCharges as ServiceVehicleBikeHighwayTollCharges, SvgServiceVehicleBikeLicenseNegativeScore as ServiceVehicleBikeLicenseNegativeScore, SvgServiceVehicleBikeLicensePlateHistory as ServiceVehicleBikeLicensePlateHistory, SvgServiceVehicleBikeLicenseStatus as ServiceVehicleBikeLicenseStatus, SvgServiceVehicleBikePlateHistory as ServiceVehicleBikePlateHistory, SvgServiceVehicleBikeTechnicalInspection as ServiceVehicleBikeTechnicalInspection, SvgServiceVehicleBikeThirdPartyInsuranceInquiry as ServiceVehicleBikeThirdPartyInsuranceInquiry, SvgServiceVehicleBikeTrafficPlanPermit as ServiceVehicleBikeTrafficPlanPermit, SvgServiceVehicleBikeVehicleDocuments as ServiceVehicleBikeVehicleDocuments, SvgServiceVehicleBikeVehicleFinesInquiry as ServiceVehicleBikeVehicleFinesInquiry, SvgServiceVehicleBikeVehicleHistoryInquiry as ServiceVehicleBikeVehicleHistoryInquiry, SvgServiceVehicleBikeVehicleTransferTax as ServiceVehicleBikeVehicleTransferTax, SvgServiceVehicleLicenseStatus as ServiceVehicleLicenseStatus, SvgSetting as Setting, SvgShare as Share, SvgSimCard as SimCard, SvgSkenasFill as SkenasFill, SvgSkenasIconName as SkenasIconName, SvgSkenasName as SkenasName, SvgSpinner as Spinner, SvgStar as Star, SvgSun as Sun, SvgTelegram as Telegram, SvgThreeLine as ThreeLine, SvgThreePerson as ThreePerson, SvgTradingView as TradingView, SvgTransactions as Transactions, SvgTrash as Trash, SvgTrashSolid as TrashSolid, SvgTrustWallet as TrustWallet, SvgTwoFa as TwoFa, SvgUnlock as Unlock, SvgUpload as Upload, SvgUser as User, SvgVideo as Video, SvgWallet as Wallet, SvgWalletDark as WalletDark, SvgWalletFill as WalletFill, SvgWarning as Warning };