@transferwise/icons 3.19.0 → 3.20.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 +2 -0
- package/build/angular/components/backslash-circle-icon.component.ts +20 -0
- package/build/angular/components/icon.component.ts +2 -1
- package/build/angular/components/savings-icon.component.ts +3 -3
- package/build/angular/index.ts +4 -2
- package/build/components/backslash-circle.tsx +52 -0
- package/build/components/savings.tsx +1 -1
- package/build/icons.json +14 -8
- package/build/index.ts +2 -1
- package/lib/angular/components/backslash-circle-icon.component.d.ts +7 -0
- package/lib/angular/components/backslash-circle-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 +43 -22
- package/lib/angular/index.js.map +1 -1
- package/lib/components/backslash-circle.d.ts +13 -0
- package/lib/components/backslash-circle.d.ts.map +1 -0
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.esm.js +71 -36
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +71 -35
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -151,6 +151,8 @@ If you are confused about how to update submodules then check [here](https://sta
|
|
151
151
|
|
152
152
|
Follow the **naming convention**, use **kebab-case** for naming the icon.
|
153
153
|
|
154
|
+
If an icon is updated but keeps its old name AND it used to be called something else (see OLD_ICON_NAMES_MAP in [create-icons-map.ts](src/build-scripts/utils/create-icons-map.ts)) then you must delete the entry for that icon from the map so that the icon will get updated
|
155
|
+
|
154
156
|
The build process for parsing, optimizing and generating individual icon components out of SVG files is done by script files, that you can find the in the `src/build-scripts` folder.
|
155
157
|
[Rollup.js](https://rollupjs.org/guide/en/) is used for generating the ES and UMD bundles of the library.
|
156
158
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
// This is an automatically generated file, please don't edit it
|
3
|
+
export const BackslashCircleIconComponent = {
|
4
|
+
template: `
|
5
|
+
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-backslash-circle">
|
6
|
+
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
7
|
+
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clip-rule="evenodd"/>
|
8
|
+
</svg>
|
9
|
+
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
10
|
+
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clip-rule="evenodd"/>
|
11
|
+
</svg>
|
12
|
+
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
13
|
+
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clip-rule="evenodd"/>
|
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-backslash-circle-icon ng-switch-when="backslash-circle" size="$ctrl.size"></tw-backslash-circle-icon>
|
20
21
|
<tw-bank-strikethrough-icon ng-switch-when="bank-strikethrough" size="$ctrl.size"></tw-bank-strikethrough-icon>
|
21
22
|
<tw-bank-transfer-icon ng-switch-when="bank-transfer" size="$ctrl.size"></tw-bank-transfer-icon>
|
22
23
|
<tw-ach-icon ng-switch-when="ach" size="$ctrl.size"></tw-ach-icon>
|
@@ -203,7 +204,6 @@
|
|
203
204
|
<tw-pie-chart-icon ng-switch-when="pie-chart" size="$ctrl.size"></tw-pie-chart-icon>
|
204
205
|
<tw-expenses-icon ng-switch-when="expenses" size="$ctrl.size"></tw-expenses-icon>
|
205
206
|
<tw-piggy-bank-icon ng-switch-when="piggy-bank" size="$ctrl.size"></tw-piggy-bank-icon>
|
206
|
-
<tw-savings-icon ng-switch-when="savings" size="$ctrl.size"></tw-savings-icon>
|
207
207
|
<tw-pix-icon ng-switch-when="pix" size="$ctrl.size"></tw-pix-icon>
|
208
208
|
<tw-plane-icon ng-switch-when="plane" size="$ctrl.size"></tw-plane-icon>
|
209
209
|
<tw-play-icon ng-switch-when="play" size="$ctrl.size"></tw-play-icon>
|
@@ -229,6 +229,7 @@
|
|
229
229
|
<tw-rewards-icon ng-switch-when="rewards" size="$ctrl.size"></tw-rewards-icon>
|
230
230
|
<tw-sad-emoji-icon ng-switch-when="sad-emoji" size="$ctrl.size"></tw-sad-emoji-icon>
|
231
231
|
<tw-dont-icon ng-switch-when="dont" size="$ctrl.size"></tw-dont-icon>
|
232
|
+
<tw-savings-icon ng-switch-when="savings" size="$ctrl.size"></tw-savings-icon>
|
232
233
|
<tw-scan-qr-code-icon ng-switch-when="scan-qr-code" size="$ctrl.size"></tw-scan-qr-code-icon>
|
233
234
|
<tw-search-icon ng-switch-when="search" size="$ctrl.size"></tw-search-icon>
|
234
235
|
<tw-send-icon ng-switch-when="send" size="$ctrl.size"></tw-send-icon>
|
@@ -4,13 +4,13 @@ export const SavingsIconComponent = {
|
|
4
4
|
template: `
|
5
5
|
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-savings">
|
6
6
|
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
7
|
-
<path fill-rule="evenodd" d="
|
7
|
+
<path fill-rule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clip-rule="evenodd"/>
|
8
8
|
</svg>
|
9
9
|
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
10
|
-
<path fill-rule="evenodd" d="
|
10
|
+
<path fill-rule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clip-rule="evenodd"/>
|
11
11
|
</svg>
|
12
12
|
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
13
|
-
<path fill-rule="evenodd" d="
|
13
|
+
<path fill-rule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clip-rule="evenodd"/>
|
14
14
|
</svg>
|
15
15
|
</span>
|
16
16
|
`,
|
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 { BackslashCircleIconComponent } from "./components/backslash-circle-icon.component"
|
14
15
|
import { BankStrikethroughIconComponent } from "./components/bank-strikethrough-icon.component"
|
15
16
|
import { BankTransferIconComponent } from "./components/bank-transfer-icon.component"
|
16
17
|
import { AchIconComponent } from "./components/ach-icon.component"
|
@@ -197,7 +198,6 @@ import { PhoneIconComponent } from "./components/phone-icon.component"
|
|
197
198
|
import { PieChartIconComponent } from "./components/pie-chart-icon.component"
|
198
199
|
import { ExpensesIconComponent } from "./components/expenses-icon.component"
|
199
200
|
import { PiggyBankIconComponent } from "./components/piggy-bank-icon.component"
|
200
|
-
import { SavingsIconComponent } from "./components/savings-icon.component"
|
201
201
|
import { PixIconComponent } from "./components/pix-icon.component"
|
202
202
|
import { PlaneIconComponent } from "./components/plane-icon.component"
|
203
203
|
import { PlayIconComponent } from "./components/play-icon.component"
|
@@ -223,6 +223,7 @@ import { RequestSendIconComponent } from "./components/request-send-icon.compone
|
|
223
223
|
import { RewardsIconComponent } from "./components/rewards-icon.component"
|
224
224
|
import { SadEmojiIconComponent } from "./components/sad-emoji-icon.component"
|
225
225
|
import { DontIconComponent } from "./components/dont-icon.component"
|
226
|
+
import { SavingsIconComponent } from "./components/savings-icon.component"
|
226
227
|
import { ScanQrCodeIconComponent } from "./components/scan-qr-code-icon.component"
|
227
228
|
import { SearchIconComponent } from "./components/search-icon.component"
|
228
229
|
import { SendIconComponent } from "./components/send-icon.component"
|
@@ -313,6 +314,7 @@ export const TwIconsModule = angular
|
|
313
314
|
.component("twArrowRightIcon", ArrowRightIconComponent)
|
314
315
|
.component("twArrowUpIcon", ArrowUpIconComponent)
|
315
316
|
.component("twAutoConvertIcon", AutoConvertIconComponent)
|
317
|
+
.component("twBackslashCircleIcon", BackslashCircleIconComponent)
|
316
318
|
.component("twBankStrikethroughIcon", BankStrikethroughIconComponent)
|
317
319
|
.component("twBankTransferIcon", BankTransferIconComponent)
|
318
320
|
.component("twAchIcon", AchIconComponent)
|
@@ -499,7 +501,6 @@ export const TwIconsModule = angular
|
|
499
501
|
.component("twPieChartIcon", PieChartIconComponent)
|
500
502
|
.component("twExpensesIcon", ExpensesIconComponent)
|
501
503
|
.component("twPiggyBankIcon", PiggyBankIconComponent)
|
502
|
-
.component("twSavingsIcon", SavingsIconComponent)
|
503
504
|
.component("twPixIcon", PixIconComponent)
|
504
505
|
.component("twPlaneIcon", PlaneIconComponent)
|
505
506
|
.component("twPlayIcon", PlayIconComponent)
|
@@ -525,6 +526,7 @@ export const TwIconsModule = angular
|
|
525
526
|
.component("twRewardsIcon", RewardsIconComponent)
|
526
527
|
.component("twSadEmojiIcon", SadEmojiIconComponent)
|
527
528
|
.component("twDontIcon", DontIconComponent)
|
529
|
+
.component("twSavingsIcon", SavingsIconComponent)
|
528
530
|
.component("twScanQrCodeIcon", ScanQrCodeIconComponent)
|
529
531
|
.component("twSearchIcon", SearchIconComponent)
|
530
532
|
.component("twSendIcon", SendIconComponent)
|
@@ -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 BackslashCircleIconProps {
|
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 BackslashCircle: React.FunctionComponent<BackslashCircleIconProps> = ({
|
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("<BackslashCircle filled /> is now deprecated, please use <BackslashCircleFill /> or refer to https://transferwise.github.io/icons/ for more info.");
|
27
|
+
}
|
28
|
+
|
29
|
+
return (
|
30
|
+
<span
|
31
|
+
className={`tw-icon tw-icon-backslash-circle ${className ? className : ''}`}
|
32
|
+
data-testid={restProps['data-testid'] || 'backslash-circle-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 fillRule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clipRule="evenodd"/>
|
47
|
+
</>
|
48
|
+
)}
|
49
|
+
</svg>
|
50
|
+
</span>
|
51
|
+
)
|
52
|
+
}
|
@@ -43,7 +43,7 @@ export const Savings: React.FunctionComponent<SavingsIconProps> = ({
|
|
43
43
|
>
|
44
44
|
{(Number(size) === 16 || Number(size) === 24 || Number(size) === 32) && (
|
45
45
|
<>
|
46
|
-
<path fillRule="evenodd" d="
|
46
|
+
<path fillRule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clipRule="evenodd"/>
|
47
47
|
</>
|
48
48
|
)}
|
49
49
|
</svg>
|
package/build/icons.json
CHANGED
@@ -76,6 +76,13 @@
|
|
76
76
|
"auto-convert": "./wise-atoms/icons/auto-convert.svg"
|
77
77
|
}
|
78
78
|
},
|
79
|
+
"backslash-circle": {
|
80
|
+
"name": "backslash-circle",
|
81
|
+
"componentName": "BackslashCircle",
|
82
|
+
"svgFiles": {
|
83
|
+
"backslash-circle": "./wise-atoms/icons/backslash-circle.svg"
|
84
|
+
}
|
85
|
+
},
|
79
86
|
"bank-strikethrough": {
|
80
87
|
"name": "bank-strikethrough",
|
81
88
|
"componentName": "BankStrikethrough",
|
@@ -1416,14 +1423,6 @@
|
|
1416
1423
|
"piggy-bank": "./wise-atoms/icons/piggy-bank.svg"
|
1417
1424
|
}
|
1418
1425
|
},
|
1419
|
-
"savings": {
|
1420
|
-
"name": "savings",
|
1421
|
-
"oldName": "savings",
|
1422
|
-
"componentName": "Savings",
|
1423
|
-
"svgFiles": {
|
1424
|
-
"savings": "./wise-atoms/icons/piggy-bank.svg"
|
1425
|
-
}
|
1426
|
-
},
|
1427
1426
|
"pix": {
|
1428
1427
|
"name": "pix",
|
1429
1428
|
"componentName": "Pix",
|
@@ -1603,6 +1602,13 @@
|
|
1603
1602
|
"dont": "./wise-atoms/icons/sad-emoji.svg"
|
1604
1603
|
}
|
1605
1604
|
},
|
1605
|
+
"savings": {
|
1606
|
+
"name": "savings",
|
1607
|
+
"componentName": "Savings",
|
1608
|
+
"svgFiles": {
|
1609
|
+
"savings": "./wise-atoms/icons/savings.svg"
|
1610
|
+
}
|
1611
|
+
},
|
1606
1612
|
"scan-qr-code": {
|
1607
1613
|
"name": "scan-qr-code",
|
1608
1614
|
"componentName": "ScanQrCode",
|
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/backslash-circle';
|
12
13
|
export * from './components/bank-strikethrough';
|
13
14
|
export * from './components/bank-transfer';
|
14
15
|
export * from './components/ach';
|
@@ -195,7 +196,6 @@ export * from './components/phone';
|
|
195
196
|
export * from './components/pie-chart';
|
196
197
|
export * from './components/expenses';
|
197
198
|
export * from './components/piggy-bank';
|
198
|
-
export * from './components/savings';
|
199
199
|
export * from './components/pix';
|
200
200
|
export * from './components/plane';
|
201
201
|
export * from './components/play';
|
@@ -221,6 +221,7 @@ export * from './components/request-send';
|
|
221
221
|
export * from './components/rewards';
|
222
222
|
export * from './components/sad-emoji';
|
223
223
|
export * from './components/dont';
|
224
|
+
export * from './components/savings';
|
224
225
|
export * from './components/scan-qr-code';
|
225
226
|
export * from './components/search';
|
226
227
|
export * from './components/send';
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"backslash-circle-icon.component.d.ts","sourceRoot":"","sources":["../../../build/angular/components/backslash-circle-icon.component.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,4BAA4B;;;;;CAiBxC,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;;;;;;CAmTzB,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":"AA+SA,eAAO,MAAM,aAAa,QA8SnB,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 BackslashCircleIconComponent = {
|
229
|
+
template: `
|
230
|
+
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-backslash-circle">
|
231
|
+
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
232
|
+
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clip-rule="evenodd"/>
|
233
|
+
</svg>
|
234
|
+
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
235
|
+
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clip-rule="evenodd"/>
|
236
|
+
</svg>
|
237
|
+
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
238
|
+
<path fill-rule="evenodd" d="M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2M7.094 5.68A8 8 0 0 1 18.32 16.905zM5.68 7.094A8 8 0 0 0 16.905 18.32z" clip-rule="evenodd"/>
|
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 BankStrikethroughIconComponent = {
|
229
249
|
template: `
|
@@ -3944,26 +3964,6 @@
|
|
3944
3964
|
}
|
3945
3965
|
};
|
3946
3966
|
|
3947
|
-
// This is an automatically generated file, please don't edit it
|
3948
|
-
const SavingsIconComponent = {
|
3949
|
-
template: `
|
3950
|
-
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-savings">
|
3951
|
-
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
3952
|
-
<path fill-rule="evenodd" d="M6 4.015a1.01 1.01 0 0 1 1.408-.928l3.09 1.324c1.24-.473 3.005-.63 4.771-.264 1.579.327 3.225 1.087 4.547 2.485q.06-.126.089-.25c.088-.351.095-.828.095-1.882h2v.116c0 .893 0 1.63-.155 2.252-.144.577-.409 1.025-.785 1.462.967 1.756.952 3.427.527 4.801-.37 1.2-1.043 2.153-1.587 2.765v4.094A1.01 1.01 0 0 1 18.99 21h-2.483a1.01 1.01 0 0 1-.938-.635l-.746-1.865h-3.646l-.746 1.865a1.01 1.01 0 0 1-.938.635H7.01A1.01 1.01 0 0 1 6 19.99v-4.274a6 6 0 0 1-.768-.465 4.7 4.7 0 0 1-.723-.625 3 3 0 0 1-.108-.126H3.01A1.01 1.01 0 0 1 2 13.49V9.51c0-.558.452-1.01 1.01-1.01h1.165a5.3 5.3 0 0 1 .62-1.245A5.4 5.4 0 0 1 6 5.952zm2 1.502v.977c0 .375-.21.727-.556.902-.292.147-.671.498-.986.97-.321.481-.457.909-.458 1.13A1.01 1.01 0 0 1 4.99 10.5H4v2h.99c.461 0 .865.314.978.757l.019.02c.086.095.227.219.407.347.176.126.36.235.51.308q.115.055.167.07l.003.001c.56.045.926.523.926 1.007V19h.823l.746-1.865a1.01 1.01 0 0 1 .938-.635h4.986c.413 0 .785.252.938.635L17.177 19H18v-3.914l.293-.293c.43-.43 1.07-1.237 1.383-2.252.302-.975.315-2.17-.524-3.511-1.077-1.723-2.69-2.593-4.289-2.925-1.636-.34-3.15-.092-3.913.288a1.01 1.01 0 0 1-.848.024zm-.907 8.491h-.004zM10.5 9.5c.707.707.707.707.706.708l-.002.002-.002.002-.003.003-.003.003.008-.008q.021-.019.083-.066c.083-.062.22-.154.41-.25.378-.188.976-.394 1.803-.394s1.425.206 1.803.394a2.7 2.7 0 0 1 .492.316l.01.008-.004-.003-.003-.003-.003-.002v-.002c-.001 0-.002 0 .705-.708.707-.707.707-.707.706-.708l-.002-.002-.003-.003-.008-.008-.02-.02-.061-.055a3 3 0 0 0-.2-.16 4.7 4.7 0 0 0-.715-.438c-.622-.312-1.524-.606-2.697-.606s-2.075.294-2.697.606c-.31.154-.548.312-.716.438a3 3 0 0 0-.26.215l-.02.02-.008.008-.003.003-.002.001v.001z" clip-rule="evenodd"/>
|
3953
|
-
</svg>
|
3954
|
-
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
3955
|
-
<path fill-rule="evenodd" d="M6 4.015a1.01 1.01 0 0 1 1.408-.928l3.09 1.324c1.24-.473 3.005-.63 4.771-.264 1.579.327 3.225 1.087 4.547 2.485q.06-.126.089-.25c.088-.351.095-.828.095-1.882h2v.116c0 .893 0 1.63-.155 2.252-.144.577-.409 1.025-.785 1.462.967 1.756.952 3.427.527 4.801-.37 1.2-1.043 2.153-1.587 2.765v4.094A1.01 1.01 0 0 1 18.99 21h-2.483a1.01 1.01 0 0 1-.938-.635l-.746-1.865h-3.646l-.746 1.865a1.01 1.01 0 0 1-.938.635H7.01A1.01 1.01 0 0 1 6 19.99v-4.274a6 6 0 0 1-.768-.465 4.7 4.7 0 0 1-.723-.625 3 3 0 0 1-.108-.126H3.01A1.01 1.01 0 0 1 2 13.49V9.51c0-.558.452-1.01 1.01-1.01h1.165a5.3 5.3 0 0 1 .62-1.245A5.4 5.4 0 0 1 6 5.952zm2 1.502v.977c0 .375-.21.727-.556.902-.292.147-.671.498-.986.97-.321.481-.457.909-.458 1.13A1.01 1.01 0 0 1 4.99 10.5H4v2h.99c.461 0 .865.314.978.757l.019.02c.086.095.227.219.407.347.176.126.36.235.51.308q.115.055.167.07l.003.001c.56.045.926.523.926 1.007V19h.823l.746-1.865a1.01 1.01 0 0 1 .938-.635h4.986c.413 0 .785.252.938.635L17.177 19H18v-3.914l.293-.293c.43-.43 1.07-1.237 1.383-2.252.302-.975.315-2.17-.524-3.511-1.077-1.723-2.69-2.593-4.289-2.925-1.636-.34-3.15-.092-3.913.288a1.01 1.01 0 0 1-.848.024zm-.907 8.491h-.004zM10.5 9.5c.707.707.707.707.706.708l-.002.002-.002.002-.003.003-.003.003.008-.008q.021-.019.083-.066c.083-.062.22-.154.41-.25.378-.188.976-.394 1.803-.394s1.425.206 1.803.394a2.7 2.7 0 0 1 .492.316l.01.008-.004-.003-.003-.003-.003-.002v-.002c-.001 0-.002 0 .705-.708.707-.707.707-.707.706-.708l-.002-.002-.003-.003-.008-.008-.02-.02-.061-.055a3 3 0 0 0-.2-.16 4.7 4.7 0 0 0-.715-.438c-.622-.312-1.524-.606-2.697-.606s-2.075.294-2.697.606c-.31.154-.548.312-.716.438a3 3 0 0 0-.26.215l-.02.02-.008.008-.003.003-.002.001v.001z" clip-rule="evenodd"/>
|
3956
|
-
</svg>
|
3957
|
-
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
3958
|
-
<path fill-rule="evenodd" d="M6 4.015a1.01 1.01 0 0 1 1.408-.928l3.09 1.324c1.24-.473 3.005-.63 4.771-.264 1.579.327 3.225 1.087 4.547 2.485q.06-.126.089-.25c.088-.351.095-.828.095-1.882h2v.116c0 .893 0 1.63-.155 2.252-.144.577-.409 1.025-.785 1.462.967 1.756.952 3.427.527 4.801-.37 1.2-1.043 2.153-1.587 2.765v4.094A1.01 1.01 0 0 1 18.99 21h-2.483a1.01 1.01 0 0 1-.938-.635l-.746-1.865h-3.646l-.746 1.865a1.01 1.01 0 0 1-.938.635H7.01A1.01 1.01 0 0 1 6 19.99v-4.274a6 6 0 0 1-.768-.465 4.7 4.7 0 0 1-.723-.625 3 3 0 0 1-.108-.126H3.01A1.01 1.01 0 0 1 2 13.49V9.51c0-.558.452-1.01 1.01-1.01h1.165a5.3 5.3 0 0 1 .62-1.245A5.4 5.4 0 0 1 6 5.952zm2 1.502v.977c0 .375-.21.727-.556.902-.292.147-.671.498-.986.97-.321.481-.457.909-.458 1.13A1.01 1.01 0 0 1 4.99 10.5H4v2h.99c.461 0 .865.314.978.757l.019.02c.086.095.227.219.407.347.176.126.36.235.51.308q.115.055.167.07l.003.001c.56.045.926.523.926 1.007V19h.823l.746-1.865a1.01 1.01 0 0 1 .938-.635h4.986c.413 0 .785.252.938.635L17.177 19H18v-3.914l.293-.293c.43-.43 1.07-1.237 1.383-2.252.302-.975.315-2.17-.524-3.511-1.077-1.723-2.69-2.593-4.289-2.925-1.636-.34-3.15-.092-3.913.288a1.01 1.01 0 0 1-.848.024zm-.907 8.491h-.004zM10.5 9.5c.707.707.707.707.706.708l-.002.002-.002.002-.003.003-.003.003.008-.008q.021-.019.083-.066c.083-.062.22-.154.41-.25.378-.188.976-.394 1.803-.394s1.425.206 1.803.394a2.7 2.7 0 0 1 .492.316l.01.008-.004-.003-.003-.003-.003-.002v-.002c-.001 0-.002 0 .705-.708.707-.707.707-.707.706-.708l-.002-.002-.003-.003-.008-.008-.02-.02-.061-.055a3 3 0 0 0-.2-.16 4.7 4.7 0 0 0-.715-.438c-.622-.312-1.524-.606-2.697-.606s-2.075.294-2.697.606c-.31.154-.548.312-.716.438a3 3 0 0 0-.26.215l-.02.02-.008.008-.003.003-.002.001v.001z" clip-rule="evenodd"/>
|
3959
|
-
</svg>
|
3960
|
-
</span>
|
3961
|
-
`,
|
3962
|
-
bindings: {
|
3963
|
-
size: "<"
|
3964
|
-
}
|
3965
|
-
};
|
3966
|
-
|
3967
3967
|
// This is an automatically generated file, please don't edit it
|
3968
3968
|
const PixIconComponent = {
|
3969
3969
|
template: `
|
@@ -4464,6 +4464,26 @@
|
|
4464
4464
|
}
|
4465
4465
|
};
|
4466
4466
|
|
4467
|
+
// This is an automatically generated file, please don't edit it
|
4468
|
+
const SavingsIconComponent = {
|
4469
|
+
template: `
|
4470
|
+
<span ng-switch="$ctrl.size" class="tw-icon tw-icon-savings">
|
4471
|
+
<svg ng-switch-when="32" width="32" height="32" viewBox="0 0 24 24" fill="currentColor">
|
4472
|
+
<path fill-rule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clip-rule="evenodd"/>
|
4473
|
+
</svg>
|
4474
|
+
<svg ng-switch-when="24" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
4475
|
+
<path fill-rule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clip-rule="evenodd"/>
|
4476
|
+
</svg>
|
4477
|
+
<svg ng-switch-default width="16" height="16" viewBox="0 0 24 24" fill="currentColor">
|
4478
|
+
<path fill-rule="evenodd" d="M20 6H4v12h16zM4 4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm11.488 8a1 1 0 1 0-2 0 1 1 0 0 0 2 0m-1-3c.463 0 .902.105 1.293.293l1.207-1.207L18.402 9.5l-1.207 1.207c.188.391.293.83.293 1.293s-.105.902-.293 1.293l1.207 1.207-1.414 1.414-1.207-1.207c-.391.188-.83.293-1.293.293s-.902-.105-1.294-.292l-1.206 1.206-1.415-1.414 1.207-1.207A3 3 0 0 1 11.488 12c0-.463.104-.902.292-1.293L10.573 9.5l1.414-1.414 1.207 1.207c.392-.188.83-.293 1.294-.293M8 9v6H6V9z" clip-rule="evenodd"/>
|
4479
|
+
</svg>
|
4480
|
+
</span>
|
4481
|
+
`,
|
4482
|
+
bindings: {
|
4483
|
+
size: "<"
|
4484
|
+
}
|
4485
|
+
};
|
4486
|
+
|
4467
4487
|
// This is an automatically generated file, please don't edit it
|
4468
4488
|
const ScanQrCodeIconComponent = {
|
4469
4489
|
template: `
|
@@ -5982,6 +6002,7 @@
|
|
5982
6002
|
<tw-arrow-right-icon ng-switch-when="arrow-right" size="$ctrl.size"></tw-arrow-right-icon>
|
5983
6003
|
<tw-arrow-up-icon ng-switch-when="arrow-up" size="$ctrl.size"></tw-arrow-up-icon>
|
5984
6004
|
<tw-auto-convert-icon ng-switch-when="auto-convert" size="$ctrl.size"></tw-auto-convert-icon>
|
6005
|
+
<tw-backslash-circle-icon ng-switch-when="backslash-circle" size="$ctrl.size"></tw-backslash-circle-icon>
|
5985
6006
|
<tw-bank-strikethrough-icon ng-switch-when="bank-strikethrough" size="$ctrl.size"></tw-bank-strikethrough-icon>
|
5986
6007
|
<tw-bank-transfer-icon ng-switch-when="bank-transfer" size="$ctrl.size"></tw-bank-transfer-icon>
|
5987
6008
|
<tw-ach-icon ng-switch-when="ach" size="$ctrl.size"></tw-ach-icon>
|
@@ -6168,7 +6189,6 @@
|
|
6168
6189
|
<tw-pie-chart-icon ng-switch-when="pie-chart" size="$ctrl.size"></tw-pie-chart-icon>
|
6169
6190
|
<tw-expenses-icon ng-switch-when="expenses" size="$ctrl.size"></tw-expenses-icon>
|
6170
6191
|
<tw-piggy-bank-icon ng-switch-when="piggy-bank" size="$ctrl.size"></tw-piggy-bank-icon>
|
6171
|
-
<tw-savings-icon ng-switch-when="savings" size="$ctrl.size"></tw-savings-icon>
|
6172
6192
|
<tw-pix-icon ng-switch-when="pix" size="$ctrl.size"></tw-pix-icon>
|
6173
6193
|
<tw-plane-icon ng-switch-when="plane" size="$ctrl.size"></tw-plane-icon>
|
6174
6194
|
<tw-play-icon ng-switch-when="play" size="$ctrl.size"></tw-play-icon>
|
@@ -6194,6 +6214,7 @@
|
|
6194
6214
|
<tw-rewards-icon ng-switch-when="rewards" size="$ctrl.size"></tw-rewards-icon>
|
6195
6215
|
<tw-sad-emoji-icon ng-switch-when="sad-emoji" size="$ctrl.size"></tw-sad-emoji-icon>
|
6196
6216
|
<tw-dont-icon ng-switch-when="dont" size="$ctrl.size"></tw-dont-icon>
|
6217
|
+
<tw-savings-icon ng-switch-when="savings" size="$ctrl.size"></tw-savings-icon>
|
6197
6218
|
<tw-scan-qr-code-icon ng-switch-when="scan-qr-code" size="$ctrl.size"></tw-scan-qr-code-icon>
|
6198
6219
|
<tw-search-icon ng-switch-when="search" size="$ctrl.size"></tw-search-icon>
|
6199
6220
|
<tw-send-icon ng-switch-when="send" size="$ctrl.size"></tw-send-icon>
|
@@ -6273,7 +6294,7 @@
|
|
6273
6294
|
};
|
6274
6295
|
|
6275
6296
|
// This is an automatically generated file, please don't edit it
|
6276
|
-
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("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("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("twSavingsIcon", SavingsIconComponent).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("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("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;
|
6297
|
+
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("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("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;
|
6277
6298
|
|
6278
6299
|
exports.TwIconsModule = TwIconsModule;
|
6279
6300
|
|