@transferwise/icons 3.22.2 → 3.22.3
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/build/angular/components/backpack-icon.component.ts +20 -0
- package/build/angular/components/icon.component.ts +1 -0
- package/build/angular/index.ts +2 -0
- package/build/components/backpack.tsx +52 -0
- package/build/icons.json +7 -0
- package/build/index.ts +1 -0
- package/lib/angular/components/backpack-icon.component.d.ts +7 -0
- package/lib/angular/components/backpack-icon.component.d.ts.map +1 -0
- package/lib/angular/components/icon.component.d.ts.map +1 -1
- package/lib/angular/index.d.ts.map +1 -1
- package/lib/angular/index.js +22 -1
- package/lib/angular/index.js.map +1 -1
- package/lib/components/backpack.d.ts +13 -0
- package/lib/components/backpack.d.ts.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.esm.js +34 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +34 -0
- package/lib/index.js.map +1 -1
- package/package.json +3 -2
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
// This is an automatically generated file, please don't edit it
|
3
|
+
export const BackpackIconComponent = {
|
4
|
+
template: `
|
5
|
+
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-backpack">
|
6
|
+
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
7
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
8
|
+
</svg>
|
9
|
+
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
10
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
11
|
+
</svg>
|
12
|
+
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
13
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
14
|
+
</svg>
|
15
|
+
</span>
|
16
|
+
`,
|
17
|
+
bindings: {
|
18
|
+
size: "<"
|
19
|
+
},
|
20
|
+
}
|
@@ -17,6 +17,7 @@
|
|
17
17
|
<tw-arrow-right-icon ng-switch-when="arrow-right" size="$ctrl.size"></tw-arrow-right-icon>
|
18
18
|
<tw-arrow-up-icon ng-switch-when="arrow-up" size="$ctrl.size"></tw-arrow-up-icon>
|
19
19
|
<tw-auto-convert-icon ng-switch-when="auto-convert" size="$ctrl.size"></tw-auto-convert-icon>
|
20
|
+
<tw-backpack-icon ng-switch-when="backpack" size="$ctrl.size"></tw-backpack-icon>
|
20
21
|
<tw-backslash-circle-icon ng-switch-when="backslash-circle" size="$ctrl.size"></tw-backslash-circle-icon>
|
21
22
|
<tw-bank-strikethrough-icon ng-switch-when="bank-strikethrough" size="$ctrl.size"></tw-bank-strikethrough-icon>
|
22
23
|
<tw-bank-transfer-icon ng-switch-when="bank-transfer" size="$ctrl.size"></tw-bank-transfer-icon>
|
package/build/angular/index.ts
CHANGED
@@ -11,6 +11,7 @@ import { ArrowLeftIconComponent } from "./components/arrow-left-icon.component"
|
|
11
11
|
import { ArrowRightIconComponent } from "./components/arrow-right-icon.component"
|
12
12
|
import { ArrowUpIconComponent } from "./components/arrow-up-icon.component"
|
13
13
|
import { AutoConvertIconComponent } from "./components/auto-convert-icon.component"
|
14
|
+
import { BackpackIconComponent } from "./components/backpack-icon.component"
|
14
15
|
import { BackslashCircleIconComponent } from "./components/backslash-circle-icon.component"
|
15
16
|
import { BankStrikethroughIconComponent } from "./components/bank-strikethrough-icon.component"
|
16
17
|
import { BankTransferIconComponent } from "./components/bank-transfer-icon.component"
|
@@ -316,6 +317,7 @@ export const TwIconsModule = angular
|
|
316
317
|
.component("twArrowRightIcon", ArrowRightIconComponent)
|
317
318
|
.component("twArrowUpIcon", ArrowUpIconComponent)
|
318
319
|
.component("twAutoConvertIcon", AutoConvertIconComponent)
|
320
|
+
.component("twBackpackIcon", BackpackIconComponent)
|
319
321
|
.component("twBackslashCircleIcon", BackslashCircleIconComponent)
|
320
322
|
.component("twBankStrikethroughIcon", BankStrikethroughIconComponent)
|
321
323
|
.component("twBankTransferIcon", BankTransferIconComponent)
|
@@ -0,0 +1,52 @@
|
|
1
|
+
|
2
|
+
// This is an automatically generated file, please don't edit it
|
3
|
+
import { IconSize } from '../types';
|
4
|
+
|
5
|
+
export interface BackpackIconProps {
|
6
|
+
description?: string;
|
7
|
+
isFocusable?: boolean;
|
8
|
+
size?: IconSize;
|
9
|
+
filled?: boolean;
|
10
|
+
className?: string;
|
11
|
+
title?: string;
|
12
|
+
['data-testid']?: string;
|
13
|
+
role?: React.AriaRole;
|
14
|
+
}
|
15
|
+
|
16
|
+
export const Backpack: React.FunctionComponent<BackpackIconProps> = ({
|
17
|
+
className = undefined,
|
18
|
+
isFocusable = false,
|
19
|
+
filled = undefined,
|
20
|
+
title = undefined,
|
21
|
+
role = undefined,
|
22
|
+
size = 16,
|
23
|
+
...restProps
|
24
|
+
}) => {
|
25
|
+
if (filled) {
|
26
|
+
console.warn("<Backpack filled /> is now deprecated, please use <BackpackFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
27
|
+
}
|
28
|
+
|
29
|
+
return (
|
30
|
+
<span
|
31
|
+
className={`tw-icon tw-icon-backpack ${className ? className : ''}`}
|
32
|
+
data-testid={restProps['data-testid'] || 'backpack-icon'}
|
33
|
+
>
|
34
|
+
<svg
|
35
|
+
aria-label={title}
|
36
|
+
aria-hidden={!title ? true : undefined}
|
37
|
+
focusable={isFocusable}
|
38
|
+
role={role ?? (title ? 'graphics-symbol img' : 'none')}
|
39
|
+
width={String(size)}
|
40
|
+
height={String(size)}
|
41
|
+
fill="currentColor"
|
42
|
+
viewBox="0 0 24 24"
|
43
|
+
>
|
44
|
+
{(Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && (
|
45
|
+
<>
|
46
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
47
|
+
</>
|
48
|
+
)}
|
49
|
+
</svg>
|
50
|
+
</span>
|
51
|
+
)
|
52
|
+
}
|
package/build/icons.json
CHANGED
@@ -76,6 +76,13 @@
|
|
76
76
|
"auto-convert": "./wise-atoms/icons/auto-convert.svg"
|
77
77
|
}
|
78
78
|
},
|
79
|
+
"backpack": {
|
80
|
+
"name": "backpack",
|
81
|
+
"componentName": "Backpack",
|
82
|
+
"svgFiles": {
|
83
|
+
"backpack": "./wise-atoms/icons/backpack.svg"
|
84
|
+
}
|
85
|
+
},
|
79
86
|
"backslash-circle": {
|
80
87
|
"name": "backslash-circle",
|
81
88
|
"componentName": "BackslashCircle",
|
package/build/index.ts
CHANGED
@@ -9,6 +9,7 @@ export * from './components/arrow-left';
|
|
9
9
|
export * from './components/arrow-right';
|
10
10
|
export * from './components/arrow-up';
|
11
11
|
export * from './components/auto-convert';
|
12
|
+
export * from './components/backpack';
|
12
13
|
export * from './components/backslash-circle';
|
13
14
|
export * from './components/bank-strikethrough';
|
14
15
|
export * from './components/bank-transfer';
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"backpack-icon.component.d.ts","sourceRoot":"","sources":["../../../build/angular/components/backpack-icon.component.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB;;;;;CAiBjC,CAAA"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"icon.component.d.ts","sourceRoot":"","sources":["../../../build/angular/components/icon.component.ts"],"names":[],"mappings":"AACE,eAAO,MAAM,aAAa;;;;;;
|
1
|
+
{"version":3,"file":"icon.component.d.ts","sourceRoot":"","sources":["../../../build/angular/components/icon.component.ts"],"names":[],"mappings":"AACE,eAAO,MAAM,aAAa;;;;;;CAsTzB,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../build/angular/index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../build/angular/index.ts"],"names":[],"mappings":"AAkTA,eAAO,MAAM,aAAa,QAiTnB,CAAC"}
|
package/lib/angular/index.js
CHANGED
@@ -224,6 +224,26 @@
|
|
224
224
|
}
|
225
225
|
};
|
226
226
|
|
227
|
+
// This is an automatically generated file, please don't edit it
|
228
|
+
const BackpackIconComponent = {
|
229
|
+
template: `
|
230
|
+
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-backpack">
|
231
|
+
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
232
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
233
|
+
</svg>
|
234
|
+
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
235
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
236
|
+
</svg>
|
237
|
+
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
238
|
+
<path d="M12 2a4 4 0 0 1 4 4v.418A5 5 0 0 1 19 11v5h1v4h-1v1c0 .5-.5 1-1 1H6a1 1 0 0 1-1-1v-1H4v-4h1v-5a5 5 0 0 1 3-4.584V6a4 4 0 0 1 4-4M7 20h10v-5h-2v2h-2v-2H7zm3-12a3 3 0 0 0-3 3v2h10v-2a3 3 0 0 0-3-3zm2-4a2 2 0 0 0-2 2h4a2 2 0 0 0-2-2"/>
|
239
|
+
</svg>
|
240
|
+
</span>
|
241
|
+
`,
|
242
|
+
bindings: {
|
243
|
+
size: "<"
|
244
|
+
}
|
245
|
+
};
|
246
|
+
|
227
247
|
// This is an automatically generated file, please don't edit it
|
228
248
|
const BackslashCircleIconComponent = {
|
229
249
|
template: `
|
@@ -6042,6 +6062,7 @@
|
|
6042
6062
|
<tw-arrow-right-icon ng-switch-when="arrow-right" size="$ctrl.size"></tw-arrow-right-icon>
|
6043
6063
|
<tw-arrow-up-icon ng-switch-when="arrow-up" size="$ctrl.size"></tw-arrow-up-icon>
|
6044
6064
|
<tw-auto-convert-icon ng-switch-when="auto-convert" size="$ctrl.size"></tw-auto-convert-icon>
|
6065
|
+
<tw-backpack-icon ng-switch-when="backpack" size="$ctrl.size"></tw-backpack-icon>
|
6045
6066
|
<tw-backslash-circle-icon ng-switch-when="backslash-circle" size="$ctrl.size"></tw-backslash-circle-icon>
|
6046
6067
|
<tw-bank-strikethrough-icon ng-switch-when="bank-strikethrough" size="$ctrl.size"></tw-bank-strikethrough-icon>
|
6047
6068
|
<tw-bank-transfer-icon ng-switch-when="bank-transfer" size="$ctrl.size"></tw-bank-transfer-icon>
|
@@ -6336,7 +6357,7 @@
|
|
6336
6357
|
};
|
6337
6358
|
|
6338
6359
|
// This is an automatically generated file, please don't edit it
|
6339
|
-
const TwIconsModule = angular.module("tw.icons", []).component("twAlertCircleFillIcon", AlertCircleFillIconComponent).component("twAlertCircleIcon", AlertCircleIconComponent).component("twAlertIcon", AlertIconComponent).component("twAlipayIcon", AlipayIconComponent).component("twArrowDiagonalDownIcon", ArrowDiagonalDownIconComponent).component("twArrowDiagonalUpIcon", ArrowDiagonalUpIconComponent).component("twArrowDownIcon", ArrowDownIconComponent).component("twArrowLeftIcon", ArrowLeftIconComponent).component("twArrowRightIcon", ArrowRightIconComponent).component("twArrowUpIcon", ArrowUpIconComponent).component("twAutoConvertIcon", AutoConvertIconComponent).component("twBackslashCircleIcon", BackslashCircleIconComponent).component("twBankStrikethroughIcon", BankStrikethroughIconComponent).component("twBankTransferIcon", BankTransferIconComponent).component("twAchIcon", AchIconComponent).component("twBankIcon", BankIconComponent).component("twBarChartIcon", BarChartIconComponent).component("twBalanceIcon", BalanceIconComponent).component("twInvestmentsIcon", InvestmentsIconComponent).component("twBarcodeIcon", BarcodeIconComponent).component("twBatchIcon", BatchIconComponent).component("twBeachIcon", BeachIconComponent).component("twHolidaysIcon", HolidaysIconComponent).component("twBillSplitIcon", BillSplitIconComponent).component("twBillsIcon", BillsIconComponent).component("twBinIcon", BinIconComponent).component("twBookIcon", BookIconComponent).component("twBoxesIcon", BoxesIconComponent).component("twCostOfGoodsSoldIcon", CostOfGoodsSoldIconComponent).component("twBriefcaseIcon", BriefcaseIconComponent).component("twBuildingIcon", BuildingIconComponent).component("twRentIcon", RentIconComponent).component("twBulbIcon", BulbIconComponent).component("twInsightsIcon", InsightsIconComponent).component("twCalendarCheckIcon", CalendarCheckIconComponent).component("twCalendarSuccessIcon", CalendarSuccessIconComponent).component("twCalendarIcon", CalendarIconComponent).component("twCameraIcon", CameraIconComponent).component("twCarIcon", CarIconComponent).component("twDriversLicenseIcon", DriversLicenseIconComponent).component("twCardCvcIcon", CardCvcIconComponent).component("twCardDetailIcon", CardDetailIconComponent).component("twCardNumberIcon", CardNumberIconComponent).component("twCardStrikethroughIcon", CardStrikethroughIconComponent).component("twCardWiseIcon", CardWiseIconComponent).component("twCardTransferwiseIcon", CardTransferwiseIconComponent).component("twCardIcon", CardIconComponent).component("twCashAppIcon", CashAppIconComponent).component("twCashRegisterIcon", CashRegisterIconComponent).component("twSalesAndRoyaltiesIcon", SalesAndRoyaltiesIconComponent).component("twCharityIcon", CharityIconComponent).component("twCheckCircleFillIcon", CheckCircleFillIconComponent).component("twCheckCircleIcon", CheckCircleIconComponent).component("twCheckIcon", CheckIconComponent).component("twVerifiedIcon", VerifiedIconComponent).component("twChevronDownIcon", ChevronDownIconComponent).component("twChevronLeftIcon", ChevronLeftIconComponent).component("twChevronRightIcon", ChevronRightIconComponent).component("twChevronUpIcon", ChevronUpIconComponent).component("twChipIcon", ChipIconComponent).component("twChipPinIcon", ChipPinIconComponent).component("twClickToPayIcon", ClickToPayIconComponent).component("twClockBorderlessIcon", ClockBorderlessIconComponent).component("twClockFillIcon", ClockFillIconComponent).component("twClockIcon", ClockIconComponent).component("twPendingCircleIcon", PendingCircleIconComponent).component("twCogIcon", CogIconComponent).component("twSettingsIcon", SettingsIconComponent).component("twCoinsIcon", CoinsIconComponent).component("twCollapseIcon", CollapseIconComponent).component("twCompactMoreIcon", CompactMoreIconComponent).component("twConfettiIcon", ConfettiIconComponent).component("twContactlessIcon", ContactlessIconComponent).component("twConvertIcon", ConvertIconComponent).component("twCrossCircleFillIcon", CrossCircleFillIconComponent).component("twCrossCircleIcon", CrossCircleIconComponent).component("twCrossIcon", CrossIconComponent).component("twCrystalBallIcon", CrystalBallIconComponent).component("twDefrostIcon", DefrostIconComponent).component("twDeliveryIcon", DeliveryIconComponent).component("twDialIcon", DialIconComponent).component("twPinCodeIcon", PinCodeIconComponent).component("twDirectDebitsIcon", DirectDebitsIconComponent).component("twDiscoBallIcon", DiscoBallIconComponent).component("twDocumentIcon", DocumentIconComponent).component("twDocumentsIcon", DocumentsIconComponent).component("twDownloadIcon", DownloadIconComponent).component("twEatingOutIcon", EatingOutIconComponent).component("twEditIcon", EditIconComponent).component("twEmailAndMobileIcon", EmailAndMobileIconComponent).component("twEmailAndPhoneIcon", EmailAndPhoneIconComponent).component("twEmailIcon", EmailIconComponent).component("twEntertainmentIcon", EntertainmentIconComponent).component("twEqualsIcon", EqualsIconComponent).component("twExpandIcon", ExpandIconComponent).component("twEyeShutIcon", EyeShutIconComponent).component("twEyeIcon", EyeIconComponent).component("twFaceIdIcon", FaceIdIconComponent).component("twFacebookIcon", FacebookIconComponent).component("twFacebookSquareIcon", FacebookSquareIconComponent).component("twFastFlagIcon", FastFlagIconComponent).component("twFemaleIcon", FemaleIconComponent).component("twFidoPasskeyIcon", FidoPasskeyIconComponent).component("twFingerprintIcon", FingerprintIconComponent).component("twFpxIcon", FpxIconComponent).component("twFreezeIcon", FreezeIconComponent).component("twGamblingIcon", GamblingIconComponent).component("twGeneralFillIcon", GeneralFillIconComponent).component("twGeneralIcon", GeneralIconComponent).component("twGiftBoxIcon", GiftBoxIconComponent).component("twInviteIcon", InviteIconComponent).component("twGlobeIcon", GlobeIconComponent).component("twGraduationCapIcon", GraduationCapIconComponent).component("twGraphIcon", GraphIconComponent).component("twGroceriesIcon", GroceriesIconComponent).component("twHandshakeIcon", HandshakeIconComponent).component("twContractServicesIcon", ContractServicesIconComponent).component("twHappyEmojiIcon", HappyEmojiIconComponent).component("twDoIcon", DoIconComponent).component("twEmojiIcon", EmojiIconComponent).component("twHeadsetIcon", HeadsetIconComponent).component("twCsIcon", CsIconComponent).component("twHeartIcon", HeartIconComponent).component("twFamilyIcon", FamilyIconComponent).component("twHouseIcon", HouseIconComponent).component("twHomeIcon", HomeIconComponent).component("twIdIcon", IdIconComponent).component("twIdealIcon", IdealIconComponent).component("twImageIcon", ImageIconComponent).component("twPictureIcon", PictureIconComponent).component("twInfoCircleFillIcon", InfoCircleFillIconComponent).component("twInfoCircleIcon", InfoCircleIconComponent).component("twInfoIcon", InfoIconComponent).component("twInsertCardIcon", InsertCardIconComponent).component("twAtmIcon", AtmIconComponent).component("twInstagramIcon", InstagramIconComponent).component("twInsuranceIcon", InsuranceIconComponent).component("twInteracIcon", InteracIconComponent).component("twJarIcon", JarIconComponent).component("twKeepIcon", KeepIconComponent).component("twKlarnaIcon", KlarnaIconComponent).component("twLaptopIcon", LaptopIconComponent).component("twLeafIcon", LeafIconComponent).component("twLightningBoltStrikethroughIcon", LightningBoltStrikethroughIconComponent).component("twLightningBoltIcon", LightningBoltIconComponent).component("twLightningIcon", LightningIconComponent).component("twLimitIcon", LimitIconComponent).component("twLinkIcon", LinkIconComponent).component("twLinkedinIcon", LinkedinIconComponent).component("twListIcon", ListIconComponent).component("twActivityIcon", ActivityIconComponent).component("twLocationMarkerIcon", LocationMarkerIconComponent).component("twLogInIcon", LogInIconComponent).component("twLogOutIcon", LogOutIconComponent).component("twMalletIcon", MalletIconComponent).component("twMassPayoutIcon", MassPayoutIconComponent).component("twMenuIcon", MenuIconComponent).component("twMessengerIcon", MessengerIconComponent).component("twMinusCircleFillIcon", MinusCircleFillIconComponent).component("twMinusCircleIcon", MinusCircleIconComponent).component("twMinusIcon", MinusIconComponent).component("twMobileLockIcon", MobileLockIconComponent).component("twTwoStepIcon", TwoStepIconComponent).component("twMobileIcon", MobileIconComponent).component("twMoneyBagIcon", MoneyBagIconComponent).component("twMoneyIcon", MoneyIconComponent).component("twMoonIcon", MoonIconComponent).component("twMoreIcon", MoreIconComponent).component("twMultiCurrencyIcon", MultiCurrencyIconComponent).component("twNavigateAwayIcon", NavigateAwayIconComponent).component("twNearbyIcon", NearbyIconComponent).component("twNewIcon", NewIconComponent).component("twNotificationActiveIcon", NotificationActiveIconComponent).component("twNotificationIcon", NotificationIconComponent).component("twPadlockUnlockedIcon", PadlockUnlockedIconComponent).component("twUnlockIcon", UnlockIconComponent).component("twPadlockIcon", PadlockIconComponent).component("twLockIcon", LockIconComponent).component("twPaperclipIcon", PaperclipIconComponent).component("twPassportIcon", PassportIconComponent).component("twPauseIcon", PauseIconComponent).component("twPayInIcon", PayInIconComponent).component("twSalaryIcon", SalaryIconComponent).component("twPayNowIcon", PayNowIconComponent).component("twPayidIcon", PayidIconComponent).component("twPaymentsIcon", PaymentsIconComponent).component("twPaypalIcon", PaypalIconComponent).component("twPeopleIcon", PeopleIconComponent).component("twRecipientsIcon", RecipientsIconComponent).component("twPercentageCircleIcon", PercentageCircleIconComponent).component("twTaxIcon", TaxIconComponent).component("twPersonIcon", PersonIconComponent).component("twProfileIcon", ProfileIconComponent).component("twPersonalCareIcon", PersonalCareIconComponent).component("twPetsIcon", PetsIconComponent).component("twPhoneIcon", PhoneIconComponent).component("twPieChartIcon", PieChartIconComponent).component("twExpensesIcon", ExpensesIconComponent).component("twPiggyBankIcon", PiggyBankIconComponent).component("twPixIcon", PixIconComponent).component("twPlaneIcon", PlaneIconComponent).component("twPlayIcon", PlayIconComponent).component("twPlusCircleFillIcon", PlusCircleFillIconComponent).component("twPlusCircleIcon", PlusCircleIconComponent).component("twPlusIcon", PlusIconComponent).component("twQrCodeIcon", QrCodeIconComponent).component("twQuestionMarkCircleFillIcon", QuestionMarkCircleFillIconComponent).component("twQuestionMarkCircleIcon", QuestionMarkCircleIconComponent).component("twHelpCircleIcon", HelpCircleIconComponent).component("twQuestionMarkIcon", QuestionMarkIconComponent).component("twHelpIcon", HelpIconComponent).component("twRainIcon", RainIconComponent).component("twRainbowIcon", RainbowIconComponent).component("twReceiptIcon", ReceiptIconComponent).component("twReceiveIcon", ReceiveIconComponent).component("twRefundReceiveIcon", RefundReceiveIconComponent).component("twRefundSentIcon", RefundSentIconComponent).component("twReloadIcon", ReloadIconComponent).component("twRefreshIcon", RefreshIconComponent).component("twRequestReceiveIcon", RequestReceiveIconComponent).component("twRequestSendIcon", RequestSendIconComponent).component("twRewardsIcon", RewardsIconComponent).component("twSadEmojiIcon", SadEmojiIconComponent).component("twDontIcon", DontIconComponent).component("twSavingsIcon", SavingsIconComponent).component("twScanQrCodeIcon", ScanQrCodeIconComponent).component("twSearchIcon", SearchIconComponent).component("twSendIcon", SendIconComponent).component("twShareAndroidIcon", ShareAndroidIconComponent).component("twShareIosIcon", ShareIosIconComponent).component("twShieldIcon", ShieldIconComponent).component("twShoppingBagIcon", ShoppingBagIconComponent).component("twECommerceIcon", ECommerceIconComponent).component("twSliderIcon", SliderIconComponent).component("twSofortIcon", SofortIconComponent).component("twSoftwareAndHostingIcon", SoftwareAndHostingIconComponent).component("twSoftwareAndWebHostingIcon", SoftwareAndWebHostingIconComponent).component("twSpeechBubbleExclamationIcon", SpeechBubbleExclamationIconComponent).component("twSpeechBubbleMessageIcon", SpeechBubbleMessageIconComponent).component("twFeedbackIcon", FeedbackIconComponent).component("twSpeechBubblePendingIcon", SpeechBubblePendingIconComponent).component("twPendingIcon", PendingIconComponent).component("twSpeechBubbleIcon", SpeechBubbleIconComponent).component("twChatIcon", ChatIconComponent).component("twSpeechBubblesIcon", SpeechBubblesIconComponent).component("twCommentsIcon", CommentsIconComponent).component("twSpendDirhamIcon", SpendDirhamIconComponent).component("twSpendDollarIcon", SpendDollarIconComponent).component("twSpendEuroIcon", SpendEuroIconComponent).component("twSpendForintIcon", SpendForintIconComponent).component("twSpendFrancIcon", SpendFrancIconComponent).component("twSpendHryvniaIcon", SpendHryvniaIconComponent).component("twSpendKorunaIcon", SpendKorunaIconComponent).component("twSpendKroneIcon", SpendKroneIconComponent).component("twSpendKunaIcon", SpendKunaIconComponent).component("twSpendLeuLeiIcon", SpendLeuLeiIconComponent).component("twSpendLevIcon", SpendLevIconComponent).component("twSpendLiraIcon", SpendLiraIconComponent).component("twSpendPoundIcon", SpendPoundIconComponent).component("twSpendRealIcon", SpendRealIconComponent).component("twSpendRinggitIcon", SpendRinggitIconComponent).component("twSpendRupeeIcon", SpendRupeeIconComponent).component("twSpendRupiahIcon", SpendRupiahIconComponent).component("twSpendYenIcon", SpendYenIconComponent).component("twSpendZlotyIcon", SpendZlotyIconComponent).component("twSplitMoneyIcon", SplitMoneyIconComponent).component("twStarFillIcon", StarFillIconComponent).component("twStarIcon", StarIconComponent).component("twStationeryIcon", StationeryIconComponent).component("twOfficeExpensesIcon", OfficeExpensesIconComponent).component("twStopIcon", StopIconComponent).component("twSuitcaseIcon", SuitcaseIconComponent).component("twTravelIcon", TravelIconComponent).component("twSunIcon", SunIconComponent).component("twSunglassesIcon", SunglassesIconComponent).component("twSwitchVerticalIcon", SwitchVerticalIconComponent).component("twSwitchIcon", SwitchIconComponent).component("twTagsIcon", TagsIconComponent).component("twTakeawayIcon", TakeawayIconComponent).component("twTargetIcon", TargetIconComponent).component("twMarketingIcon", MarketingIconComponent).component("twTaxiIcon", TaxiIconComponent).component("twTeamIcon", TeamIconComponent).component("twThemeIcon", ThemeIconComponent).component("twTransferIcon", TransferIconComponent).component("twTransportIcon", TransportIconComponent).component("twTrustlyIcon", TrustlyIconComponent).component("twTwitterIcon", TwitterIconComponent).component("twUpiIcon", UpiIconComponent).component("twUploadIcon", UploadIconComponent).component("twUpwardGraphIcon", UpwardGraphIconComponent).component("twExchangeRateIcon", ExchangeRateIconComponent).component("twVenmoIcon", VenmoIconComponent).component("twWalletIcon", WalletIconComponent).component("twWarningIcon", WarningIconComponent).component("twWaterIcon", WaterIconComponent).component("twWhatsappIcon", WhatsappIconComponent).component("twWithdrawalIcon", WithdrawalIconComponent).component("twOwnersWithdrawalIcon", OwnersWithdrawalIconComponent).component("twXIcon", XIconComponent).component("twYoutubeIcon", YoutubeIconComponent).component("twIcon", IconComponent).name;
|
6360
|
+
const TwIconsModule = angular.module("tw.icons", []).component("twAlertCircleFillIcon", AlertCircleFillIconComponent).component("twAlertCircleIcon", AlertCircleIconComponent).component("twAlertIcon", AlertIconComponent).component("twAlipayIcon", AlipayIconComponent).component("twArrowDiagonalDownIcon", ArrowDiagonalDownIconComponent).component("twArrowDiagonalUpIcon", ArrowDiagonalUpIconComponent).component("twArrowDownIcon", ArrowDownIconComponent).component("twArrowLeftIcon", ArrowLeftIconComponent).component("twArrowRightIcon", ArrowRightIconComponent).component("twArrowUpIcon", ArrowUpIconComponent).component("twAutoConvertIcon", AutoConvertIconComponent).component("twBackpackIcon", BackpackIconComponent).component("twBackslashCircleIcon", BackslashCircleIconComponent).component("twBankStrikethroughIcon", BankStrikethroughIconComponent).component("twBankTransferIcon", BankTransferIconComponent).component("twAchIcon", AchIconComponent).component("twBankIcon", BankIconComponent).component("twBarChartIcon", BarChartIconComponent).component("twBalanceIcon", BalanceIconComponent).component("twInvestmentsIcon", InvestmentsIconComponent).component("twBarcodeIcon", BarcodeIconComponent).component("twBatchIcon", BatchIconComponent).component("twBeachIcon", BeachIconComponent).component("twHolidaysIcon", HolidaysIconComponent).component("twBillSplitIcon", BillSplitIconComponent).component("twBillsIcon", BillsIconComponent).component("twBinIcon", BinIconComponent).component("twBookIcon", BookIconComponent).component("twBoxesIcon", BoxesIconComponent).component("twCostOfGoodsSoldIcon", CostOfGoodsSoldIconComponent).component("twBriefcaseIcon", BriefcaseIconComponent).component("twBuildingIcon", BuildingIconComponent).component("twRentIcon", RentIconComponent).component("twBulbIcon", BulbIconComponent).component("twInsightsIcon", InsightsIconComponent).component("twCalendarCheckIcon", CalendarCheckIconComponent).component("twCalendarSuccessIcon", CalendarSuccessIconComponent).component("twCalendarIcon", CalendarIconComponent).component("twCameraIcon", CameraIconComponent).component("twCarIcon", CarIconComponent).component("twDriversLicenseIcon", DriversLicenseIconComponent).component("twCardCvcIcon", CardCvcIconComponent).component("twCardDetailIcon", CardDetailIconComponent).component("twCardNumberIcon", CardNumberIconComponent).component("twCardStrikethroughIcon", CardStrikethroughIconComponent).component("twCardWiseIcon", CardWiseIconComponent).component("twCardTransferwiseIcon", CardTransferwiseIconComponent).component("twCardIcon", CardIconComponent).component("twCashAppIcon", CashAppIconComponent).component("twCashRegisterIcon", CashRegisterIconComponent).component("twSalesAndRoyaltiesIcon", SalesAndRoyaltiesIconComponent).component("twCharityIcon", CharityIconComponent).component("twCheckCircleFillIcon", CheckCircleFillIconComponent).component("twCheckCircleIcon", CheckCircleIconComponent).component("twCheckIcon", CheckIconComponent).component("twVerifiedIcon", VerifiedIconComponent).component("twChevronDownIcon", ChevronDownIconComponent).component("twChevronLeftIcon", ChevronLeftIconComponent).component("twChevronRightIcon", ChevronRightIconComponent).component("twChevronUpIcon", ChevronUpIconComponent).component("twChipIcon", ChipIconComponent).component("twChipPinIcon", ChipPinIconComponent).component("twClickToPayIcon", ClickToPayIconComponent).component("twClockBorderlessIcon", ClockBorderlessIconComponent).component("twClockFillIcon", ClockFillIconComponent).component("twClockIcon", ClockIconComponent).component("twPendingCircleIcon", PendingCircleIconComponent).component("twCogIcon", CogIconComponent).component("twSettingsIcon", SettingsIconComponent).component("twCoinsIcon", CoinsIconComponent).component("twCollapseIcon", CollapseIconComponent).component("twCompactMoreIcon", CompactMoreIconComponent).component("twConfettiIcon", ConfettiIconComponent).component("twContactlessIcon", ContactlessIconComponent).component("twConvertIcon", ConvertIconComponent).component("twCrossCircleFillIcon", CrossCircleFillIconComponent).component("twCrossCircleIcon", CrossCircleIconComponent).component("twCrossIcon", CrossIconComponent).component("twCrystalBallIcon", CrystalBallIconComponent).component("twDefrostIcon", DefrostIconComponent).component("twDeliveryIcon", DeliveryIconComponent).component("twDialIcon", DialIconComponent).component("twPinCodeIcon", PinCodeIconComponent).component("twDirectDebitsIcon", DirectDebitsIconComponent).component("twDiscoBallIcon", DiscoBallIconComponent).component("twDocumentIcon", DocumentIconComponent).component("twDocumentsIcon", DocumentsIconComponent).component("twDownloadIcon", DownloadIconComponent).component("twEatingOutIcon", EatingOutIconComponent).component("twEditIcon", EditIconComponent).component("twEmailAndMobileIcon", EmailAndMobileIconComponent).component("twEmailAndPhoneIcon", EmailAndPhoneIconComponent).component("twEmailIcon", EmailIconComponent).component("twEntertainmentIcon", EntertainmentIconComponent).component("twEqualsIcon", EqualsIconComponent).component("twExpandIcon", ExpandIconComponent).component("twEyeShutIcon", EyeShutIconComponent).component("twEyeIcon", EyeIconComponent).component("twFaceIdIcon", FaceIdIconComponent).component("twFacebookIcon", FacebookIconComponent).component("twFacebookSquareIcon", FacebookSquareIconComponent).component("twFastFlagIcon", FastFlagIconComponent).component("twFemaleIcon", FemaleIconComponent).component("twFidoPasskeyIcon", FidoPasskeyIconComponent).component("twFingerprintIcon", FingerprintIconComponent).component("twFpxIcon", FpxIconComponent).component("twFreezeIcon", FreezeIconComponent).component("twGamblingIcon", GamblingIconComponent).component("twGeneralFillIcon", GeneralFillIconComponent).component("twGeneralIcon", GeneralIconComponent).component("twGiftBoxIcon", GiftBoxIconComponent).component("twInviteIcon", InviteIconComponent).component("twGlobeIcon", GlobeIconComponent).component("twGraduationCapIcon", GraduationCapIconComponent).component("twGraphIcon", GraphIconComponent).component("twGroceriesIcon", GroceriesIconComponent).component("twHandshakeIcon", HandshakeIconComponent).component("twContractServicesIcon", ContractServicesIconComponent).component("twHappyEmojiIcon", HappyEmojiIconComponent).component("twDoIcon", DoIconComponent).component("twEmojiIcon", EmojiIconComponent).component("twHeadsetIcon", HeadsetIconComponent).component("twCsIcon", CsIconComponent).component("twHeartIcon", HeartIconComponent).component("twFamilyIcon", FamilyIconComponent).component("twHouseIcon", HouseIconComponent).component("twHomeIcon", HomeIconComponent).component("twIdIcon", IdIconComponent).component("twIdealIcon", IdealIconComponent).component("twImageIcon", ImageIconComponent).component("twPictureIcon", PictureIconComponent).component("twInfoCircleFillIcon", InfoCircleFillIconComponent).component("twInfoCircleIcon", InfoCircleIconComponent).component("twInfoIcon", InfoIconComponent).component("twInsertCardIcon", InsertCardIconComponent).component("twAtmIcon", AtmIconComponent).component("twInstagramIcon", InstagramIconComponent).component("twInsuranceIcon", InsuranceIconComponent).component("twInteracIcon", InteracIconComponent).component("twJarIcon", JarIconComponent).component("twKeepIcon", KeepIconComponent).component("twKlarnaIcon", KlarnaIconComponent).component("twLaptopIcon", LaptopIconComponent).component("twLeafIcon", LeafIconComponent).component("twLightningBoltStrikethroughIcon", LightningBoltStrikethroughIconComponent).component("twLightningBoltIcon", LightningBoltIconComponent).component("twLightningIcon", LightningIconComponent).component("twLimitIcon", LimitIconComponent).component("twLinkIcon", LinkIconComponent).component("twLinkedinIcon", LinkedinIconComponent).component("twListIcon", ListIconComponent).component("twActivityIcon", ActivityIconComponent).component("twLocationMarkerIcon", LocationMarkerIconComponent).component("twLogInIcon", LogInIconComponent).component("twLogOutIcon", LogOutIconComponent).component("twMalletIcon", MalletIconComponent).component("twMassPayoutIcon", MassPayoutIconComponent).component("twMenuIcon", MenuIconComponent).component("twMessengerIcon", MessengerIconComponent).component("twMinusCircleFillIcon", MinusCircleFillIconComponent).component("twMinusCircleIcon", MinusCircleIconComponent).component("twMinusIcon", MinusIconComponent).component("twMobileLockIcon", MobileLockIconComponent).component("twTwoStepIcon", TwoStepIconComponent).component("twMobileIcon", MobileIconComponent).component("twMoneyBagIcon", MoneyBagIconComponent).component("twMoneyIcon", MoneyIconComponent).component("twMoonIcon", MoonIconComponent).component("twMoreIcon", MoreIconComponent).component("twMultiCurrencyIcon", MultiCurrencyIconComponent).component("twNavigateAwayIcon", NavigateAwayIconComponent).component("twNearbyIcon", NearbyIconComponent).component("twNewIcon", NewIconComponent).component("twNotificationActiveIcon", NotificationActiveIconComponent).component("twNotificationIcon", NotificationIconComponent).component("twPadlockUnlockedIcon", PadlockUnlockedIconComponent).component("twUnlockIcon", UnlockIconComponent).component("twPadlockIcon", PadlockIconComponent).component("twLockIcon", LockIconComponent).component("twPaperclipIcon", PaperclipIconComponent).component("twPassportIcon", PassportIconComponent).component("twPauseIcon", PauseIconComponent).component("twPayInIcon", PayInIconComponent).component("twSalaryIcon", SalaryIconComponent).component("twPayNowIcon", PayNowIconComponent).component("twPayidIcon", PayidIconComponent).component("twPaymentsIcon", PaymentsIconComponent).component("twPaypalIcon", PaypalIconComponent).component("twPeopleIcon", PeopleIconComponent).component("twRecipientsIcon", RecipientsIconComponent).component("twPercentageCircleIcon", PercentageCircleIconComponent).component("twTaxIcon", TaxIconComponent).component("twPersonIcon", PersonIconComponent).component("twProfileIcon", ProfileIconComponent).component("twPersonalCareIcon", PersonalCareIconComponent).component("twPetsIcon", PetsIconComponent).component("twPhoneIcon", PhoneIconComponent).component("twPieChartIcon", PieChartIconComponent).component("twExpensesIcon", ExpensesIconComponent).component("twPiggyBankIcon", PiggyBankIconComponent).component("twPixIcon", PixIconComponent).component("twPlaneIcon", PlaneIconComponent).component("twPlayIcon", PlayIconComponent).component("twPlusCircleFillIcon", PlusCircleFillIconComponent).component("twPlusCircleIcon", PlusCircleIconComponent).component("twPlusIcon", PlusIconComponent).component("twQrCodeIcon", QrCodeIconComponent).component("twQuestionMarkCircleFillIcon", QuestionMarkCircleFillIconComponent).component("twQuestionMarkCircleIcon", QuestionMarkCircleIconComponent).component("twHelpCircleIcon", HelpCircleIconComponent).component("twQuestionMarkIcon", QuestionMarkIconComponent).component("twHelpIcon", HelpIconComponent).component("twRainIcon", RainIconComponent).component("twRainbowIcon", RainbowIconComponent).component("twReceiptIcon", ReceiptIconComponent).component("twReceiveIcon", ReceiveIconComponent).component("twRefundReceiveIcon", RefundReceiveIconComponent).component("twRefundSentIcon", RefundSentIconComponent).component("twReloadIcon", ReloadIconComponent).component("twRefreshIcon", RefreshIconComponent).component("twRequestReceiveIcon", RequestReceiveIconComponent).component("twRequestSendIcon", RequestSendIconComponent).component("twRewardsIcon", RewardsIconComponent).component("twSadEmojiIcon", SadEmojiIconComponent).component("twDontIcon", DontIconComponent).component("twSavingsIcon", SavingsIconComponent).component("twScanQrCodeIcon", ScanQrCodeIconComponent).component("twSearchIcon", SearchIconComponent).component("twSendIcon", SendIconComponent).component("twShareAndroidIcon", ShareAndroidIconComponent).component("twShareIosIcon", ShareIosIconComponent).component("twShieldIcon", ShieldIconComponent).component("twShoppingBagIcon", ShoppingBagIconComponent).component("twECommerceIcon", ECommerceIconComponent).component("twSliderIcon", SliderIconComponent).component("twSofortIcon", SofortIconComponent).component("twSoftwareAndHostingIcon", SoftwareAndHostingIconComponent).component("twSoftwareAndWebHostingIcon", SoftwareAndWebHostingIconComponent).component("twSpeechBubbleExclamationIcon", SpeechBubbleExclamationIconComponent).component("twSpeechBubbleMessageIcon", SpeechBubbleMessageIconComponent).component("twFeedbackIcon", FeedbackIconComponent).component("twSpeechBubblePendingIcon", SpeechBubblePendingIconComponent).component("twPendingIcon", PendingIconComponent).component("twSpeechBubbleIcon", SpeechBubbleIconComponent).component("twChatIcon", ChatIconComponent).component("twSpeechBubblesIcon", SpeechBubblesIconComponent).component("twCommentsIcon", CommentsIconComponent).component("twSpendDirhamIcon", SpendDirhamIconComponent).component("twSpendDollarIcon", SpendDollarIconComponent).component("twSpendEuroIcon", SpendEuroIconComponent).component("twSpendForintIcon", SpendForintIconComponent).component("twSpendFrancIcon", SpendFrancIconComponent).component("twSpendHryvniaIcon", SpendHryvniaIconComponent).component("twSpendKorunaIcon", SpendKorunaIconComponent).component("twSpendKroneIcon", SpendKroneIconComponent).component("twSpendKunaIcon", SpendKunaIconComponent).component("twSpendLeuLeiIcon", SpendLeuLeiIconComponent).component("twSpendLevIcon", SpendLevIconComponent).component("twSpendLiraIcon", SpendLiraIconComponent).component("twSpendPoundIcon", SpendPoundIconComponent).component("twSpendRealIcon", SpendRealIconComponent).component("twSpendRinggitIcon", SpendRinggitIconComponent).component("twSpendRupeeIcon", SpendRupeeIconComponent).component("twSpendRupiahIcon", SpendRupiahIconComponent).component("twSpendYenIcon", SpendYenIconComponent).component("twSpendZlotyIcon", SpendZlotyIconComponent).component("twSplitMoneyIcon", SplitMoneyIconComponent).component("twStarFillIcon", StarFillIconComponent).component("twStarIcon", StarIconComponent).component("twStationeryIcon", StationeryIconComponent).component("twOfficeExpensesIcon", OfficeExpensesIconComponent).component("twStopIcon", StopIconComponent).component("twSuitcaseIcon", SuitcaseIconComponent).component("twTravelIcon", TravelIconComponent).component("twSunIcon", SunIconComponent).component("twSunglassesIcon", SunglassesIconComponent).component("twSwitchVerticalIcon", SwitchVerticalIconComponent).component("twSwitchIcon", SwitchIconComponent).component("twTagsIcon", TagsIconComponent).component("twTakeawayIcon", TakeawayIconComponent).component("twTargetIcon", TargetIconComponent).component("twMarketingIcon", MarketingIconComponent).component("twTaxiIcon", TaxiIconComponent).component("twTeamIcon", TeamIconComponent).component("twThemeIcon", ThemeIconComponent).component("twTransferIcon", TransferIconComponent).component("twTransportIcon", TransportIconComponent).component("twTrustlyIcon", TrustlyIconComponent).component("twTwitterIcon", TwitterIconComponent).component("twUpiIcon", UpiIconComponent).component("twUploadIcon", UploadIconComponent).component("twUpwardGraphIcon", UpwardGraphIconComponent).component("twExchangeRateIcon", ExchangeRateIconComponent).component("twVenmoIcon", VenmoIconComponent).component("twWalletIcon", WalletIconComponent).component("twWarningIcon", WarningIconComponent).component("twWaterIcon", WaterIconComponent).component("twWhatsappIcon", WhatsappIconComponent).component("twWithdrawalIcon", WithdrawalIconComponent).component("twOwnersWithdrawalIcon", OwnersWithdrawalIconComponent).component("twXIcon", XIconComponent).component("twYoutubeIcon", YoutubeIconComponent).component("twIcon", IconComponent).name;
|
6340
6361
|
|
6341
6362
|
exports.TwIconsModule = TwIconsModule;
|
6342
6363
|
|