@taiga-ui/cdk 4.0.0-rc.7 → 4.0.0-rc.9
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/constants/used-icons.d.ts +1 -1
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/esm2022/constants/used-icons.mjs +9 -1
- package/esm2022/constants/version.mjs +2 -2
- package/esm2022/services/index.mjs +2 -2
- package/esm2022/services/theme-color.service.mjs +30 -0
- package/fesm2022/taiga-ui-cdk-constants.mjs +9 -1
- package/fesm2022/taiga-ui-cdk-constants.mjs.map +1 -1
- package/fesm2022/taiga-ui-cdk-services.mjs +19 -22
- package/fesm2022/taiga-ui-cdk-services.mjs.map +1 -1
- package/package.json +5 -6
- package/schematics/ng-update/interfaces/html-comment.d.ts +3 -2
- package/schematics/ng-update/interfaces/replacement-attribute-value.d.ts +6 -2
- package/schematics/ng-update/interfaces/replacement-identifier.d.ts +4 -11
- package/schematics/ng-update/steps/replace-identifier.js +16 -12
- package/schematics/ng-update/utils/templates/replace-attr-values.js +39 -10
- package/schematics/ng-update/utils/templates/template-comments.js +7 -1
- package/schematics/ng-update/v4/index.js +3 -0
- package/schematics/ng-update/v4/migrate-icons/index.js +2 -2
- package/schematics/ng-update/v4/migrate-icons/rename-proprietary-icons.d.ts +2 -1
- package/schematics/ng-update/v4/migrate-icons/rename-proprietary-icons.js +19 -6
- package/schematics/ng-update/v4/steps/constants/attr-with-values-to-replace.js +42 -2
- package/schematics/ng-update/v4/steps/constants/attrs-to-replace.js +34 -3
- package/schematics/ng-update/v4/steps/constants/html-comments.js +9 -0
- package/schematics/ng-update/v4/steps/constants/identifiers-to-replace.js +243 -220
- package/schematics/ng-update/v4/steps/constants/inputs-to-remove.js +1 -0
- package/schematics/ng-update/v4/steps/constants/migration-warnings.js +20 -0
- package/schematics/ng-update/v4/steps/constants/modules-to-remove.js +8 -0
- package/schematics/ng-update/v4/steps/constants/tags-to-replace.js +3 -2
- package/schematics/ng-update/v4/steps/constants/types.js +29 -0
- package/schematics/ng-update/v4/steps/index.d.ts +4 -1
- package/schematics/ng-update/v4/steps/index.js +4 -1
- package/schematics/ng-update/v4/steps/migrate-alert-service.d.ts +2 -0
- package/schematics/ng-update/v4/steps/migrate-alert-service.js +110 -0
- package/schematics/ng-update/v4/steps/migrate-month-context.d.ts +2 -0
- package/schematics/ng-update/v4/steps/migrate-month-context.js +39 -0
- package/schematics/ng-update/v4/steps/migrate-number-format-settings.d.ts +2 -0
- package/schematics/ng-update/v4/steps/migrate-number-format-settings.js +64 -0
- package/schematics/ng-update/v4/steps/migrate-templates.js +5 -0
- package/schematics/ng-update/v4/steps/{migrate-styles.js → styles/index.js} +13 -1
- package/schematics/ng-update/v4/steps/styles/migrate-less-scss-constants.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-less-scss-constants.js +13 -0
- package/schematics/ng-update/v4/steps/styles/migrate-scrollbar-behavior.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-scrollbar-behavior.js +10 -0
- package/schematics/ng-update/v4/steps/styles/migrate-shadow-mixins.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-shadow-mixins.js +23 -0
- package/schematics/ng-update/v4/steps/styles/migrate-space-mixins.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-space-mixins.js +20 -0
- package/schematics/ng-update/v4/steps/styles/migrate-text-mixins.d.ts +1 -0
- package/schematics/ng-update/v4/steps/styles/migrate-text-mixins.js +54 -0
- package/schematics/ng-update/v4/steps/templates/index.d.ts +3 -0
- package/schematics/ng-update/v4/steps/templates/index.js +3 -0
- package/schematics/ng-update/v4/steps/templates/migrate-avatar.js +10 -5
- package/schematics/ng-update/{v3/steps/migrate-polymorpheus.d.ts → v4/steps/templates/migrate-axes.d.ts} +2 -2
- package/schematics/ng-update/v4/steps/templates/migrate-axes.js +26 -0
- package/schematics/ng-update/v4/steps/templates/migrate-badge.js +7 -6
- package/schematics/ng-update/v4/steps/templates/migrate-badged-content.js +1 -1
- package/schematics/ng-update/v4/steps/templates/migrate-blocked.js +2 -1
- package/schematics/ng-update/v4/steps/templates/migrate-expandable.js +3 -2
- package/schematics/ng-update/v4/steps/templates/migrate-focusable.js +7 -4
- package/schematics/ng-update/v4/steps/templates/migrate-labeled.js +1 -1
- package/schematics/ng-update/{v3/steps/migrate-textfield-controller.d.ts → v4/steps/templates/migrate-mobile-tabs.d.ts} +2 -2
- package/schematics/ng-update/v4/steps/templates/migrate-mobile-tabs.js +45 -0
- package/schematics/ng-update/v4/steps/templates/migrate-notification.d.ts +8 -0
- package/schematics/ng-update/v4/steps/templates/migrate-notification.js +64 -0
- package/schematics/ng-update/v4/steps/templates/migrate-number-precision.d.ts +8 -0
- package/schematics/ng-update/v4/steps/templates/migrate-number-precision.js +36 -0
- package/schematics/ng-update/v4/steps/templates/migrate-overscroll.js +4 -6
- package/schematics/ng-update/v4/steps/templates/migrate-thumbnail-card.js +2 -1
- package/schematics/ng-update/v4/steps/templates/toggles/common.js +3 -2
- package/schematics/ng-update/v4/steps/templates/toggles/migrate-checkbox.js +2 -1
- package/schematics/ng-update/v4/steps/update-packages.js +13 -4
- package/schematics/utils/templates/elements.js +2 -1
- package/schematics/utils/templates/inputs.js +2 -1
- package/services/index.d.ts +1 -1
- package/services/theme-color.service.d.ts +16 -0
- package/esm2022/services/static-request.service.mjs +0 -33
- package/schematics/ng-update/v3/constants/breakpoints.d.ts +0 -82
- package/schematics/ng-update/v3/constants/breakpoints.js +0 -34
- package/schematics/ng-update/v3/constants/constants.d.ts +0 -2
- package/schematics/ng-update/v3/constants/constants.js +0 -466
- package/schematics/ng-update/v3/constants/deprecated-functions.d.ts +0 -2
- package/schematics/ng-update/v3/constants/deprecated-functions.js +0 -680
- package/schematics/ng-update/v3/constants/enums.d.ts +0 -2
- package/schematics/ng-update/v3/constants/enums.js +0 -284
- package/schematics/ng-update/v3/constants/modules.d.ts +0 -2
- package/schematics/ng-update/v3/constants/modules.js +0 -9
- package/schematics/ng-update/v3/constants/services.d.ts +0 -2
- package/schematics/ng-update/v3/constants/services.js +0 -53
- package/schematics/ng-update/v3/constants/templates.d.ts +0 -57
- package/schematics/ng-update/v3/constants/templates.js +0 -744
- package/schematics/ng-update/v3/constants/tui-interactive-selectors.d.ts +0 -1
- package/schematics/ng-update/v3/constants/tui-interactive-selectors.js +0 -55
- package/schematics/ng-update/v3/constants/types.d.ts +0 -2
- package/schematics/ng-update/v3/constants/types.js +0 -156
- package/schematics/ng-update/v3/constants/warnings.d.ts +0 -2
- package/schematics/ng-update/v3/constants/warnings.js +0 -111
- package/schematics/ng-update/v3/index.d.ts +0 -3
- package/schematics/ng-update/v3/index.js +0 -105
- package/schematics/ng-update/v3/schema.json +0 -13
- package/schematics/ng-update/v3/steps/migrate-date-time.d.ts +0 -2
- package/schematics/ng-update/v3/steps/migrate-date-time.js +0 -207
- package/schematics/ng-update/v3/steps/migrate-polymorpheus.js +0 -78
- package/schematics/ng-update/v3/steps/migrate-progress.d.ts +0 -8
- package/schematics/ng-update/v3/steps/migrate-progress.js +0 -49
- package/schematics/ng-update/v3/steps/migrate-sliders/index.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-sliders/index.js +0 -19
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-range.js +0 -103
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-sliders/migrate-input-slider.js +0 -90
- package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.d.ts +0 -3
- package/schematics/ng-update/v3/steps/migrate-taiga-proprietary-icons.js +0 -70
- package/schematics/ng-update/v3/steps/migrate-templates.d.ts +0 -4
- package/schematics/ng-update/v3/steps/migrate-templates.js +0 -216
- package/schematics/ng-update/v3/steps/migrate-textfield-controller.js +0 -98
- package/schematics/ng-update/v3/steps/miscellaneous.d.ts +0 -2
- package/schematics/ng-update/v3/steps/miscellaneous.js +0 -81
- package/schematics/ng-update/v3/steps/replace-functions.d.ts +0 -2
- package/schematics/ng-update/v3/steps/replace-functions.js +0 -138
- package/schematics/ng-update/v3/steps/replace-styles.d.ts +0 -3
- package/schematics/ng-update/v3/steps/replace-styles.js +0 -33
- package/schematics/ng-update/v3-30/constants/constants.d.ts +0 -2
- package/schematics/ng-update/v3-30/constants/constants.js +0 -8
- package/schematics/ng-update/v3-30/constants/icons.d.ts +0 -4
- package/schematics/ng-update/v3-30/constants/icons.js +0 -993
- package/schematics/ng-update/v3-30/index.d.ts +0 -3
- package/schematics/ng-update/v3-30/index.js +0 -33
- package/schematics/ng-update/v3-35/constants/constants.d.ts +0 -2
- package/schematics/ng-update/v3-35/constants/constants.js +0 -8
- package/schematics/ng-update/v3-35/constants/icons.d.ts +0 -4
- package/schematics/ng-update/v3-35/constants/icons.js +0 -2537
- package/schematics/ng-update/v3-35/index.d.ts +0 -3
- package/schematics/ng-update/v3-35/index.js +0 -33
- package/schematics/ng-update/v3-36/index.d.ts +0 -3
- package/schematics/ng-update/v3-36/index.js +0 -23
- package/schematics/ng-update/v3-40/index.d.ts +0 -3
- package/schematics/ng-update/v3-40/index.js +0 -62
- package/schematics/ng-update/v3-5/index.d.ts +0 -3
- package/schematics/ng-update/v3-5/index.js +0 -20
- package/schematics/ng-update/v3-5/steps/migrate-expand-templates.d.ts +0 -3
- package/schematics/ng-update/v3-5/steps/migrate-expand-templates.js +0 -44
- package/services/static-request.service.d.ts +0 -8
- /package/schematics/ng-update/v4/steps/{migrate-styles.d.ts → styles/index.d.ts} +0 -0
@@ -1,2537 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.ICONS = void 0;
|
4
|
-
exports.ICONS = [
|
5
|
-
{
|
6
|
-
to: 'tuiIconTdsGridMediumPragmatic',
|
7
|
-
from: 'tuiIconAddProductLarge',
|
8
|
-
},
|
9
|
-
{
|
10
|
-
to: 'tuiIconTdsTexMediumPragmatic',
|
11
|
-
from: 'tuiIconTeXLarge',
|
12
|
-
},
|
13
|
-
{
|
14
|
-
to: 'tuiIconTdsWysiwygSpoilerMediumPragmatic',
|
15
|
-
from: 'tuiIconSpoilerLarge',
|
16
|
-
},
|
17
|
-
{
|
18
|
-
to: 'tuiIconTdsWysiwygSpoilerRemoveMediumPragmatic',
|
19
|
-
from: 'tuiIconSpoilerDeleteLarge',
|
20
|
-
},
|
21
|
-
{
|
22
|
-
to: 'tuiIconTdsLinkOffMediumPragmatic',
|
23
|
-
from: 'tuiIconUnlinkLarge',
|
24
|
-
},
|
25
|
-
{
|
26
|
-
to: 'tuiIconTdsWysiwygHighlighterMediumPragmatic',
|
27
|
-
from: 'tuiIconHiliteLarge',
|
28
|
-
},
|
29
|
-
{
|
30
|
-
to: 'tuiIconTdsWysiwygTableAddRowMediumPragmatic',
|
31
|
-
from: 'tuiIconAddRowLarge',
|
32
|
-
},
|
33
|
-
{
|
34
|
-
to: 'tuiIconTdsExclamationSmallPragmatic',
|
35
|
-
from: 'tuiIconAlert',
|
36
|
-
},
|
37
|
-
{
|
38
|
-
to: 'tuiIconTdsAlertSmallPragmatic',
|
39
|
-
from: 'tuiIconAttention',
|
40
|
-
},
|
41
|
-
{
|
42
|
-
to: 'tuiIconTdsAlertSmallPragmatic',
|
43
|
-
from: 'tuiIconAlertCircle',
|
44
|
-
},
|
45
|
-
{
|
46
|
-
to: 'tuiIconTdsAlertMedium',
|
47
|
-
from: 'tuiIconAlertCircleLarge',
|
48
|
-
},
|
49
|
-
{
|
50
|
-
to: 'tuiIconTdsAlertMediumPragmatic',
|
51
|
-
from: 'tuiIconAlertCircleLargeOutline',
|
52
|
-
},
|
53
|
-
{
|
54
|
-
to: 'tuiIconTdsAlertSmallPragmatic',
|
55
|
-
from: 'tuiIconAlertCircleOutline',
|
56
|
-
},
|
57
|
-
{
|
58
|
-
to: 'tuiIconTdsExclamationMediumPragmatic',
|
59
|
-
from: 'tuiIconAlertLarge',
|
60
|
-
},
|
61
|
-
{
|
62
|
-
to: 'tuiIconTdsWysiwygAlignCenterMediumPragmatic',
|
63
|
-
from: 'tuiIconAlignCenterLarge',
|
64
|
-
},
|
65
|
-
{
|
66
|
-
to: 'tuiIconTdsWysiwygAlignJustifyMediumPragmatic',
|
67
|
-
from: 'tuiIconAlignJustifyLarge',
|
68
|
-
},
|
69
|
-
{
|
70
|
-
to: 'tuiIconTdsWysiwygAlignLeftMediumPragmatic',
|
71
|
-
from: 'tuiIconAlignLeftLarge',
|
72
|
-
},
|
73
|
-
{
|
74
|
-
to: 'tuiIconTdsWysiwygAlignRightMediumPragmatic',
|
75
|
-
from: 'tuiIconAlignRightLarge',
|
76
|
-
},
|
77
|
-
{
|
78
|
-
to: 'tuiIconTdsPaymentAlipayLogoSquare',
|
79
|
-
from: 'tuiIconAlipay',
|
80
|
-
},
|
81
|
-
{
|
82
|
-
to: 'tuiIconTdsArrowDownSmallPragmatic',
|
83
|
-
from: 'tuiIconArrowDown',
|
84
|
-
},
|
85
|
-
{
|
86
|
-
to: 'tuiIconTdsArrowDownMediumPragmatic',
|
87
|
-
from: 'tuiIconArrowDownLarge',
|
88
|
-
},
|
89
|
-
{
|
90
|
-
to: 'tuiIconTdsArrowBottomLeftSmallPragmatic',
|
91
|
-
from: 'tuiIconArrowDownLeft',
|
92
|
-
},
|
93
|
-
{
|
94
|
-
to: 'tuiIconTdsArrowBottomRightSmallPragmatic',
|
95
|
-
from: 'tuiIconArrowDownRight',
|
96
|
-
},
|
97
|
-
{
|
98
|
-
to: 'tuiIconTdsArrowLeftSmallPragmatic',
|
99
|
-
from: 'tuiIconArrowLeft',
|
100
|
-
},
|
101
|
-
{
|
102
|
-
to: 'tuiIconTdsArrowLeftCircleMediumPragmatic',
|
103
|
-
from: 'tuiIconBackCircle',
|
104
|
-
},
|
105
|
-
{
|
106
|
-
to: 'tuiIconTdsArrowLeftCircleMediumPragmatic',
|
107
|
-
from: 'tuiIconArrowLeftCircle',
|
108
|
-
},
|
109
|
-
{
|
110
|
-
to: 'tuiIconTdsArrowLeftMediumPragmatic',
|
111
|
-
from: 'tuiIconArrowLeftLarge',
|
112
|
-
},
|
113
|
-
{
|
114
|
-
to: 'tuiIconTdsArrowRightSmallPragmatic',
|
115
|
-
from: 'tuiIconArrowRight',
|
116
|
-
},
|
117
|
-
{
|
118
|
-
to: 'tuiIconTdsArrowRightMediumPragmatic',
|
119
|
-
from: 'tuiIconArrowRightLarge',
|
120
|
-
},
|
121
|
-
{
|
122
|
-
to: 'tuiIconTdsArrowDownSmallPragmatic',
|
123
|
-
from: 'tuiIconArrowShortDown',
|
124
|
-
},
|
125
|
-
{
|
126
|
-
to: 'tuiIconTdsArrowLeftSmallPragmatic',
|
127
|
-
from: 'tuiIconArrowShortLeft',
|
128
|
-
},
|
129
|
-
{
|
130
|
-
to: 'tuiIconTdsArrowRightSmallPragmatic',
|
131
|
-
from: 'tuiIconArrowShortRight',
|
132
|
-
},
|
133
|
-
{
|
134
|
-
to: 'tuiIconTdsArrowUpSmallPragmatic',
|
135
|
-
from: 'tuiIconArrowShortUp',
|
136
|
-
},
|
137
|
-
{
|
138
|
-
to: 'tuiIconTdsArrowUpSmallPragmatic',
|
139
|
-
from: 'tuiIconArrowUp',
|
140
|
-
},
|
141
|
-
{
|
142
|
-
to: 'tuiIconTdsArrowUpMediumPragmatic',
|
143
|
-
from: 'tuiIconArrowUpLarge',
|
144
|
-
},
|
145
|
-
{
|
146
|
-
to: 'tuiIconTdsArrowTopLeftSmallPragmatic',
|
147
|
-
from: 'tuiIconArrowUpLeft',
|
148
|
-
},
|
149
|
-
{
|
150
|
-
to: 'tuiIconTdsArrowTopRightSmallPragmatic',
|
151
|
-
from: 'tuiIconArrowUpRight',
|
152
|
-
},
|
153
|
-
{
|
154
|
-
to: 'tuiIconTdsBackspaceSmallPragmatic',
|
155
|
-
from: 'tuiIconBackspace',
|
156
|
-
},
|
157
|
-
{
|
158
|
-
to: 'tuiIconTdsChartBarSmallPragmatic',
|
159
|
-
from: 'tuiIconChart',
|
160
|
-
},
|
161
|
-
{
|
162
|
-
to: 'tuiIconTdsChartBarSmallPragmatic',
|
163
|
-
from: 'tuiIconChartBar',
|
164
|
-
},
|
165
|
-
{
|
166
|
-
to: 'tuiIconTdsChartBarSmallPragmatic',
|
167
|
-
from: 'tuiIconBarChart',
|
168
|
-
},
|
169
|
-
{
|
170
|
-
to: 'tuiIconTdsBarcodeScanSmallPragmatic',
|
171
|
-
from: 'tuiIconBarCode',
|
172
|
-
},
|
173
|
-
{
|
174
|
-
to: 'tuiIconTdsBarcodeScanMediumPragmatic',
|
175
|
-
from: 'tuiIconBarCodeLarge',
|
176
|
-
},
|
177
|
-
{
|
178
|
-
to: 'tuiIconTdsChartBarMediumPragmatic',
|
179
|
-
from: 'tuiIconBarchartCircleLarge',
|
180
|
-
},
|
181
|
-
{
|
182
|
-
to: 'tuiIconTdsBellSmallPragmatic',
|
183
|
-
from: 'tuiIconBell',
|
184
|
-
},
|
185
|
-
{
|
186
|
-
to: 'tuiIconTdsBellMediumPragmatic',
|
187
|
-
from: 'tuiIconBellLarge',
|
188
|
-
},
|
189
|
-
{
|
190
|
-
to: 'tuiIconTdsBellMediumPragmatic',
|
191
|
-
from: 'tuiIconBellLargeOutline',
|
192
|
-
},
|
193
|
-
{
|
194
|
-
to: 'tuiIconTdsBellOffSmallPragmatic',
|
195
|
-
from: 'tuiIconBellOff',
|
196
|
-
},
|
197
|
-
{
|
198
|
-
to: 'tuiIconTdsBellOffMediumPragmatic',
|
199
|
-
from: 'tuiIconBellOffLarge',
|
200
|
-
},
|
201
|
-
{
|
202
|
-
to: 'tuiIconTdsBellOffMediumPragmatic',
|
203
|
-
from: 'tuiIconBellOffLargeOutline',
|
204
|
-
},
|
205
|
-
{
|
206
|
-
to: 'tuiIconTdsBellOffSmallPragmatic',
|
207
|
-
from: 'tuiIconBellOffOutline',
|
208
|
-
},
|
209
|
-
{
|
210
|
-
to: 'tuiIconTdsBellSmallPragmatic',
|
211
|
-
from: 'tuiIconBellOutline',
|
212
|
-
},
|
213
|
-
{
|
214
|
-
to: 'tuiIconTdsReceiptMediumPragmatic',
|
215
|
-
from: 'tuiIconBillOutLarge',
|
216
|
-
},
|
217
|
-
{
|
218
|
-
to: 'tuiIconTdsBookmarkSmallPragmatic',
|
219
|
-
from: 'tuiIconBookmark',
|
220
|
-
},
|
221
|
-
{
|
222
|
-
to: 'tuiIconTdsBookmarkFilledMedium',
|
223
|
-
from: 'tuiIconBookmarkLarge',
|
224
|
-
},
|
225
|
-
{
|
226
|
-
to: 'tuiIconTdsBookmarkMediumPragmatic',
|
227
|
-
from: 'tuiIconBookmarkLargeOutline',
|
228
|
-
},
|
229
|
-
{
|
230
|
-
to: 'tuiIconTdsBookmarkSmallPragmatic',
|
231
|
-
from: 'tuiIconBookmarkOutline',
|
232
|
-
},
|
233
|
-
{
|
234
|
-
to: 'tuiIconTdsCalendarSmallPragmatic',
|
235
|
-
from: 'tuiIconCalendar',
|
236
|
-
},
|
237
|
-
{
|
238
|
-
to: 'tuiIconTdsCalendarSmallPragmatic',
|
239
|
-
from: 'tuiIconCalendarFilled',
|
240
|
-
},
|
241
|
-
{
|
242
|
-
to: 'tuiIconTdsCalendarMediumPragmatic',
|
243
|
-
from: 'tuiIconCalendarFilledLarge',
|
244
|
-
},
|
245
|
-
{
|
246
|
-
to: 'tuiIconTdsCalendarMediumPragmatic',
|
247
|
-
from: 'tuiIconCalendarLarge',
|
248
|
-
},
|
249
|
-
{
|
250
|
-
to: 'tuiIconTdsCalendarMediumPragmatic',
|
251
|
-
from: 'tuiIconCalendarLargeOutline',
|
252
|
-
},
|
253
|
-
{
|
254
|
-
to: 'tuiIconTdsMathLessCalendarSmallPragmatic',
|
255
|
-
from: 'tuiIconCalendarLess',
|
256
|
-
},
|
257
|
-
{
|
258
|
-
to: 'tuiIconTdsMathLessCalendarMediumPragmatic',
|
259
|
-
from: 'tuiIconCalendarLessLarge',
|
260
|
-
},
|
261
|
-
{
|
262
|
-
to: 'tuiIconTdsMathLessOrEqualCalendarSmallPragmatic',
|
263
|
-
from: 'tuiIconCalendarLessOrEqual',
|
264
|
-
},
|
265
|
-
{
|
266
|
-
to: 'tuiIconTdsMathLessOrEqualCalendarMediumPragmatic',
|
267
|
-
from: 'tuiIconCalendarLessOrEqualLarge',
|
268
|
-
},
|
269
|
-
{
|
270
|
-
to: 'tuiIconTdsMathMoreCalendarSmallPragmatic',
|
271
|
-
from: 'tuiIconCalendarMore',
|
272
|
-
},
|
273
|
-
{
|
274
|
-
to: 'tuiIconTdsMathMoreCalendarMediumPragmatic',
|
275
|
-
from: 'tuiIconCalendarMoreLarge',
|
276
|
-
},
|
277
|
-
{
|
278
|
-
to: 'tuiIconTdsMathMoreOrEqualCalendarSmallPragmatic',
|
279
|
-
from: 'tuiIconCalendarMoreOrEqual',
|
280
|
-
},
|
281
|
-
{
|
282
|
-
to: 'tuiIconTdsMathMoreOrEqualCalendarMediumPragmatic',
|
283
|
-
from: 'tuiIconCalendarMoreOrEqualLarge',
|
284
|
-
},
|
285
|
-
{
|
286
|
-
to: 'tuiIconTdsCalendarSmallPragmatic',
|
287
|
-
from: 'tuiIconCalendarOutline',
|
288
|
-
},
|
289
|
-
{
|
290
|
-
to: 'tuiIconTdsPhoneKeypadSmallPragmatic',
|
291
|
-
from: 'tuiIconCall',
|
292
|
-
},
|
293
|
-
{
|
294
|
-
to: 'tuiIconTdsPhoneArrowSmallPragmatic',
|
295
|
-
from: 'tuiIconCallIn',
|
296
|
-
},
|
297
|
-
{
|
298
|
-
to: 'tuiIconTdsPhoneArrowMediumPragmatic',
|
299
|
-
from: 'tuiIconCallInLarge',
|
300
|
-
},
|
301
|
-
{
|
302
|
-
to: 'tuiIconTdsPhoneKeypadSmallPragmatic',
|
303
|
-
from: 'tuiIconCallKeyboard',
|
304
|
-
},
|
305
|
-
{
|
306
|
-
to: 'tuiIconTdsPhoneKeypadMediumPragmatic',
|
307
|
-
from: 'tuiIconCallKeyboardLarge',
|
308
|
-
},
|
309
|
-
{
|
310
|
-
to: 'tuiIconTdsPhoneArrowRightSmallPragmatic',
|
311
|
-
from: 'tuiIconCallOut',
|
312
|
-
},
|
313
|
-
{
|
314
|
-
to: 'tuiIconTdsPhoneArrowRightMediumPragmatic',
|
315
|
-
from: 'tuiIconCallOutLarge',
|
316
|
-
},
|
317
|
-
{
|
318
|
-
to: 'tuiIconTdsPhoneArrowDoubleRightSmallPragmatic',
|
319
|
-
from: 'tuiIconCallTransfer',
|
320
|
-
},
|
321
|
-
{
|
322
|
-
to: 'tuiIconTdsPhoneArrowDoubleRightMediumPragmatic',
|
323
|
-
from: 'tuiIconCallTransferLarge',
|
324
|
-
},
|
325
|
-
{
|
326
|
-
to: 'tuiIconTdsCameraPhotoSmallPragmatic',
|
327
|
-
from: 'tuiIconCamera',
|
328
|
-
},
|
329
|
-
{
|
330
|
-
to: 'tuiIconTdsCameraPhotoMediumPragmatic',
|
331
|
-
from: 'tuiIconCameraLarge',
|
332
|
-
},
|
333
|
-
{
|
334
|
-
to: 'tuiIconTdsCameraPhotoSmallPragmatic',
|
335
|
-
from: 'tuiIconCameraLargeOutline',
|
336
|
-
},
|
337
|
-
{
|
338
|
-
to: 'tuiIconTdsCameraPhotoMediumPragmatic',
|
339
|
-
from: 'tuiIconCameraOutline',
|
340
|
-
},
|
341
|
-
{
|
342
|
-
to: 'tuiIconTdsCardsMediumPragmatic',
|
343
|
-
from: 'tuiIconCardsLarge',
|
344
|
-
},
|
345
|
-
{
|
346
|
-
to: 'tuiIconTdsCardsMediumPragmatic',
|
347
|
-
from: 'tuiIconCardsLargeOutline',
|
348
|
-
},
|
349
|
-
{
|
350
|
-
to: 'tuiIconTdsShoppingCartSmallPragmatic',
|
351
|
-
from: 'tuiIconCart',
|
352
|
-
},
|
353
|
-
{
|
354
|
-
to: 'tuiIconTdsShoppingCartMediumPragmatic',
|
355
|
-
from: 'tuiIconCartLarge',
|
356
|
-
},
|
357
|
-
{
|
358
|
-
to: 'tuiIconTdsShoppingCartMediumPragmatic',
|
359
|
-
from: 'tuiIconCartLargeOutline',
|
360
|
-
},
|
361
|
-
{
|
362
|
-
to: 'tuiIconTdsShoppingCartMediumPragmatic',
|
363
|
-
from: 'tuiIconCartOutline',
|
364
|
-
},
|
365
|
-
{
|
366
|
-
to: 'tuiIconTdsPercentCircleSmallPragmatic',
|
367
|
-
from: 'tuiIconCashback',
|
368
|
-
},
|
369
|
-
{
|
370
|
-
to: 'tuiIconTdsPercentCircleMediumPragmatic',
|
371
|
-
from: 'tuiIconCashbackLarge',
|
372
|
-
},
|
373
|
-
{
|
374
|
-
to: 'tuiIconTdsPercentCircleSmallPragmatic',
|
375
|
-
from: 'tuiIconCashbackOutline',
|
376
|
-
},
|
377
|
-
{
|
378
|
-
to: 'tuiIconTdsPercentCircleMediumPragmatic',
|
379
|
-
from: 'tuiIconCashbackOutlineLarge',
|
380
|
-
},
|
381
|
-
{
|
382
|
-
to: 'tuiIconTdsChartCandleSmallPragmatic',
|
383
|
-
from: 'tuiIconChartCandle',
|
384
|
-
},
|
385
|
-
{
|
386
|
-
to: 'tuiIconTdsChartCandleMediumPragmatic',
|
387
|
-
from: 'tuiIconChartCandleLarge',
|
388
|
-
},
|
389
|
-
{
|
390
|
-
to: 'tuiIconTdsChartLineSmallPragmatic',
|
391
|
-
from: 'tuiIconChartLine',
|
392
|
-
},
|
393
|
-
{
|
394
|
-
to: 'tuiIconTdsChartLineMediumPragmatic',
|
395
|
-
from: 'tuiIconChartLineLarge',
|
396
|
-
},
|
397
|
-
{
|
398
|
-
to: 'tuiIconTdsChartPieSmallPragmatic',
|
399
|
-
from: 'tuiIconChartPie',
|
400
|
-
},
|
401
|
-
{
|
402
|
-
to: 'tuiIconTdsChatsSmallPragmatic',
|
403
|
-
from: 'tuiIconChat',
|
404
|
-
},
|
405
|
-
{
|
406
|
-
to: 'tuiIconTdsChatsMediumPragmatic',
|
407
|
-
from: 'tuiIconChatLarge',
|
408
|
-
},
|
409
|
-
{
|
410
|
-
to: 'tuiIconTdsChatsMediumPragmatic',
|
411
|
-
from: 'tuiIconChatLargeOutline',
|
412
|
-
},
|
413
|
-
{
|
414
|
-
to: 'tuiIconTdsChatsSmallPragmatic',
|
415
|
-
from: 'tuiIconChatOutline',
|
416
|
-
},
|
417
|
-
{
|
418
|
-
to: 'tuiIconTdsCheckSmallPragmatic',
|
419
|
-
from: 'tuiIconCheck',
|
420
|
-
},
|
421
|
-
{
|
422
|
-
to: 'tuiIconTdsCheckCircleSmallPragmatic',
|
423
|
-
from: 'tuiIconDone',
|
424
|
-
},
|
425
|
-
{
|
426
|
-
to: 'tuiIconTdsCheckCircleSmallPragmatic',
|
427
|
-
from: 'tuiIconCheckCircle',
|
428
|
-
},
|
429
|
-
{
|
430
|
-
to: 'tuiIconTdsCheckCircleMedium',
|
431
|
-
from: 'tuiIconCheckCircleLarge',
|
432
|
-
},
|
433
|
-
{
|
434
|
-
to: 'tuiIconTdsCheckCircleMediumPragmatic',
|
435
|
-
from: 'tuiIconCheckCircleLargeOutline',
|
436
|
-
},
|
437
|
-
{
|
438
|
-
to: 'tuiIconTdsCheckCircleSmallPragmatic',
|
439
|
-
from: 'tuiIconCheckCircleOutline',
|
440
|
-
},
|
441
|
-
{
|
442
|
-
to: 'tuiIconTdsCheckMediumPragmatic',
|
443
|
-
from: 'tuiIconCheckLarge',
|
444
|
-
},
|
445
|
-
{
|
446
|
-
to: 'tuiIconTdsChevronDownSmallPragmatic',
|
447
|
-
from: 'tuiIconChevronDown',
|
448
|
-
},
|
449
|
-
{
|
450
|
-
to: 'tuiIconTdsArrowDownCircleMediumPragmatic',
|
451
|
-
from: 'tuiIconChevronDownCircleLarge',
|
452
|
-
},
|
453
|
-
{
|
454
|
-
to: 'tuiIconTdsChevronDownMediumPragmatic',
|
455
|
-
from: 'tuiIconChevronDownLarge',
|
456
|
-
},
|
457
|
-
{
|
458
|
-
to: 'tuiIconTdsChevronLeftSmallPragmatic',
|
459
|
-
from: 'tuiIconChevronLeft',
|
460
|
-
},
|
461
|
-
{
|
462
|
-
to: 'tuiIconTdsArrowLeftCircleMediumPragmatic',
|
463
|
-
from: 'tuiIconChevronLeftCircleLarge',
|
464
|
-
},
|
465
|
-
{
|
466
|
-
to: 'tuiIconTdsChevronLeftMediumPragmatic',
|
467
|
-
from: 'tuiIconChevronLeftLarge',
|
468
|
-
},
|
469
|
-
{
|
470
|
-
to: 'tuiIconTdsChevronRightSmallPragmatic',
|
471
|
-
from: 'tuiIconChevronRight',
|
472
|
-
},
|
473
|
-
{
|
474
|
-
to: 'tuiIconTdsArrowRightCircleMediumPragmatic',
|
475
|
-
from: 'tuiIconChevronRightCircleLarge',
|
476
|
-
},
|
477
|
-
{
|
478
|
-
to: 'tuiIconTdsChevronRightMediumPragmatic',
|
479
|
-
from: 'tuiIconChevronRightLarge',
|
480
|
-
},
|
481
|
-
{
|
482
|
-
to: 'tuiIconTdsChevronUpSmallPragmatic',
|
483
|
-
from: 'tuiIconChevronUp',
|
484
|
-
},
|
485
|
-
{
|
486
|
-
to: 'tuiIconTdsArrowUpCircleMediumPragmatic',
|
487
|
-
from: 'tuiIconChevronUpCircleLarge',
|
488
|
-
},
|
489
|
-
{
|
490
|
-
to: 'tuiIconTdsChevronUpMediumPragmatic',
|
491
|
-
from: 'tuiIconChevronUpLarge',
|
492
|
-
},
|
493
|
-
{
|
494
|
-
to: 'tuiIconTdsChevronDoubleDownMediumPragmatic',
|
495
|
-
from: 'tuiIconChevronsDownLarge',
|
496
|
-
},
|
497
|
-
{
|
498
|
-
to: 'tuiIconTdsChevronDoubleLeftMediumPragmatic',
|
499
|
-
from: 'tuiIconChevronsLeftLarge',
|
500
|
-
},
|
501
|
-
{
|
502
|
-
to: 'tuiIconTdsChevronRightMediumPragmatic',
|
503
|
-
from: 'tuiIconChevronsRightLarge',
|
504
|
-
},
|
505
|
-
{
|
506
|
-
to: 'tuiIconTdsChevronDoubleUpSmallPragmatic',
|
507
|
-
from: 'tuiIconChevronsUp',
|
508
|
-
},
|
509
|
-
{
|
510
|
-
to: 'tuiIconTdsWysiwygFontStyleClearMediumPragmatic',
|
511
|
-
from: 'tuiIconClearFormatLarge',
|
512
|
-
},
|
513
|
-
{
|
514
|
-
to: 'tuiIconTdsClockCircleSmallPragmatic',
|
515
|
-
from: 'tuiIconTime',
|
516
|
-
},
|
517
|
-
{
|
518
|
-
to: 'tuiIconTdsClockCircleSmallPragmatic',
|
519
|
-
from: 'tuiIconClock',
|
520
|
-
},
|
521
|
-
{
|
522
|
-
to: 'tuiIconTdsClockMediumPragmatic',
|
523
|
-
from: 'tuiIconClockLarge',
|
524
|
-
},
|
525
|
-
{
|
526
|
-
to: 'tuiIconTdsClockMediumPragmatic',
|
527
|
-
from: 'tuiIconClockLargeOutline',
|
528
|
-
},
|
529
|
-
{
|
530
|
-
to: 'tuiIconTdsClockCircleSmallPragmatic',
|
531
|
-
from: 'tuiIconClockOutline',
|
532
|
-
},
|
533
|
-
{
|
534
|
-
to: 'tuiIconTdsCrossSmallPragmatic',
|
535
|
-
from: 'tuiIconClose',
|
536
|
-
},
|
537
|
-
{
|
538
|
-
to: 'tuiIconTdsCrossCircleSmallPragmatic',
|
539
|
-
from: 'tuiIconCloseCircle',
|
540
|
-
},
|
541
|
-
{
|
542
|
-
to: 'tuiIconTdsCrossCircleMediumPragmatic',
|
543
|
-
from: 'tuiIconCloseCircleLarge',
|
544
|
-
},
|
545
|
-
{
|
546
|
-
to: 'tuiIconTdsCrossCircleMediumPragmatic',
|
547
|
-
from: 'tuiIconCloseCircleLargeOutline',
|
548
|
-
},
|
549
|
-
{
|
550
|
-
to: 'tuiIconTdsCrossCircleSmallPragmatic',
|
551
|
-
from: 'tuiIconCloseCircleOutline',
|
552
|
-
},
|
553
|
-
{
|
554
|
-
to: 'tuiIconTdsCrossMediumPragmatic',
|
555
|
-
from: 'tuiIconCloseLarge',
|
556
|
-
},
|
557
|
-
{
|
558
|
-
to: 'tuiIconTdsCloudSmallPragmatic',
|
559
|
-
from: 'tuiIconCloud',
|
560
|
-
},
|
561
|
-
{
|
562
|
-
to: 'tuiIconTdsCloudArrowOutSmallPragmatic',
|
563
|
-
from: 'tuiIconCloudDownload',
|
564
|
-
},
|
565
|
-
{
|
566
|
-
to: 'tuiIconTdsCloudArrowOutMediumPragmatic',
|
567
|
-
from: 'tuiIconCloudDownloadLarge',
|
568
|
-
},
|
569
|
-
{
|
570
|
-
to: 'tuiIconTdsCloudArrowOutMediumPragmatic',
|
571
|
-
from: 'tuiIconCloudDownloadLargeOutline',
|
572
|
-
},
|
573
|
-
{
|
574
|
-
to: 'tuiIconTdsCloudArrowOutSmallPragmatic',
|
575
|
-
from: 'tuiIconCloudDownloadOutline',
|
576
|
-
},
|
577
|
-
{
|
578
|
-
to: 'tuiIconTdsCloudSmallPragmatic',
|
579
|
-
from: 'tuiIconCloudFilled',
|
580
|
-
},
|
581
|
-
{
|
582
|
-
to: 'tuiIconTdsCloudMediumPragmatic',
|
583
|
-
from: 'tuiIconCloudLarge',
|
584
|
-
},
|
585
|
-
{
|
586
|
-
to: 'tuiIconTdsCloudMediumPragmatic',
|
587
|
-
from: 'tuiIconCloudLargeOutline',
|
588
|
-
},
|
589
|
-
{
|
590
|
-
to: 'tuiIconTdsCloudSmallPragmatic',
|
591
|
-
from: 'tuiIconCloudOutline',
|
592
|
-
},
|
593
|
-
{
|
594
|
-
to: 'tuiIconTdsCloudArrowInSmallPragmatic',
|
595
|
-
from: 'tuiIconCloudUpload',
|
596
|
-
},
|
597
|
-
{
|
598
|
-
to: 'tuiIconTdsCloudArrowInMediumPragmatic',
|
599
|
-
from: 'tuiIconCloudUploadLarge',
|
600
|
-
},
|
601
|
-
{
|
602
|
-
to: 'tuiIconTdsCloudArrowInMediumPragmatic',
|
603
|
-
from: 'tuiIconCloudUploadLargeOutline',
|
604
|
-
},
|
605
|
-
{
|
606
|
-
to: 'tuiIconTdsCloudArrowInSmallPragmatic',
|
607
|
-
from: 'tuiIconCloudUploadOutline',
|
608
|
-
},
|
609
|
-
{
|
610
|
-
to: 'tuiIconTdsWysiwygCodeMediumPragmatic',
|
611
|
-
from: 'tuiIconCodeLarge',
|
612
|
-
},
|
613
|
-
{
|
614
|
-
to: 'tuiIconTdsWysiwygFontColorMediumPragmatic',
|
615
|
-
from: 'tuiIconColorLarge',
|
616
|
-
},
|
617
|
-
{
|
618
|
-
to: 'tuiIconTdsCopySmallPragmatic',
|
619
|
-
from: 'tuiIconCopy',
|
620
|
-
},
|
621
|
-
{
|
622
|
-
to: 'tuiIconTdsCopyMediumPragmatic',
|
623
|
-
from: 'tuiIconCopyLarge',
|
624
|
-
},
|
625
|
-
{
|
626
|
-
to: 'tuiIconTdsScissorsMediumPragmatic',
|
627
|
-
from: 'tuiIconCutLarge',
|
628
|
-
},
|
629
|
-
{
|
630
|
-
to: 'tuiIconTdsTrashSmallPragmatic',
|
631
|
-
from: 'tuiIconDelete',
|
632
|
-
},
|
633
|
-
{
|
634
|
-
to: 'tuiIconTdsBackspaceMediumPragmatic',
|
635
|
-
from: 'tuiIconDeleteLarge',
|
636
|
-
},
|
637
|
-
{
|
638
|
-
to: 'tuiIconTdsBackspaceMediumPragmatic',
|
639
|
-
from: 'tuiIconDeleteLargeOutline',
|
640
|
-
},
|
641
|
-
{
|
642
|
-
to: 'tuiIconTdsBackspaceSmallPragmatic',
|
643
|
-
from: 'tuiIconDeleteOutline',
|
644
|
-
},
|
645
|
-
{
|
646
|
-
to: 'tuiIconTdsArrowInDownSmallPragmatic',
|
647
|
-
from: 'tuiIconDownload',
|
648
|
-
},
|
649
|
-
{
|
650
|
-
to: 'tuiIconTdsArrowInDownMediumPragmatic',
|
651
|
-
from: 'tuiIconDownloadLarge',
|
652
|
-
},
|
653
|
-
{
|
654
|
-
to: 'tuiIconTdsPencilSmallPragmatic',
|
655
|
-
from: 'tuiIconDraft',
|
656
|
-
},
|
657
|
-
{
|
658
|
-
to: 'tuiIconTdsPencilMediumPragmatic',
|
659
|
-
from: 'tuiIconDraftFilledLarge',
|
660
|
-
},
|
661
|
-
{
|
662
|
-
to: 'tuiIconTdsPencilMediumPragmatic',
|
663
|
-
from: 'tuiIconDraftLarge',
|
664
|
-
},
|
665
|
-
{
|
666
|
-
to: 'tuiIconTdsPencilSmallPragmatic',
|
667
|
-
from: 'tuiIconDraftOutline',
|
668
|
-
},
|
669
|
-
{
|
670
|
-
to: 'tuiIconTdsDragSmallPragmatic',
|
671
|
-
from: 'tuiIconDrag',
|
672
|
-
},
|
673
|
-
{
|
674
|
-
to: 'tuiIconTdsDragMediumPragmatic',
|
675
|
-
from: 'tuiIconDragLarge',
|
676
|
-
},
|
677
|
-
{
|
678
|
-
to: 'tuiIconTdsEditSmallPragmatic',
|
679
|
-
from: 'tuiIconEdit',
|
680
|
-
},
|
681
|
-
{
|
682
|
-
to: 'tuiIconTdsEditSmallPragmatic',
|
683
|
-
from: 'tuiIconEdit2',
|
684
|
-
},
|
685
|
-
{
|
686
|
-
to: 'tuiIconTdsPencilMediumPragmatic',
|
687
|
-
from: 'tuiIconEdit2Large',
|
688
|
-
},
|
689
|
-
{
|
690
|
-
to: 'tuiIconTdsEditMediumPragmatic',
|
691
|
-
from: 'tuiIconEditFilledLarge',
|
692
|
-
},
|
693
|
-
{
|
694
|
-
to: 'tuiIconTdsEditMediumPragmatic',
|
695
|
-
from: 'tuiIconEditLarge',
|
696
|
-
},
|
697
|
-
{
|
698
|
-
to: 'tuiIconTdsEditMediumPragmatic',
|
699
|
-
from: 'tuiIconEditLargeOutline',
|
700
|
-
},
|
701
|
-
{
|
702
|
-
to: 'tuiIconTdsEditSmallPragmatic',
|
703
|
-
from: 'tuiIconEditOutline',
|
704
|
-
},
|
705
|
-
{
|
706
|
-
to: 'tuiIconTdsMathEqualSmallPragmatic',
|
707
|
-
from: 'tuiIconEqual',
|
708
|
-
},
|
709
|
-
{
|
710
|
-
to: 'tuiIconTdsMathEqualMediumPragmatic',
|
711
|
-
from: 'tuiIconEqualLarge',
|
712
|
-
},
|
713
|
-
{
|
714
|
-
to: 'tuiIconTdsWysiwygListBulletedMediumPragmatic',
|
715
|
-
from: 'tuiIconEventsLarge',
|
716
|
-
},
|
717
|
-
{
|
718
|
-
to: 'tuiIconTdsWysiwygListBulletedMediumPragmatic',
|
719
|
-
from: 'tuiIconEventsLargeOutline',
|
720
|
-
},
|
721
|
-
{
|
722
|
-
to: 'tuiIconTdsArrowOutTopRightSmallPragmatic',
|
723
|
-
from: 'tuiIconExternal',
|
724
|
-
},
|
725
|
-
{
|
726
|
-
to: 'tuiIconTdsArrowOutTopRightSmallPragmatic',
|
727
|
-
from: 'tuiIconExternalLink',
|
728
|
-
},
|
729
|
-
{
|
730
|
-
to: 'tuiIconTdsArrowOutTopRightMediumPragmatic',
|
731
|
-
from: 'tuiIconExternalLinkLarge',
|
732
|
-
},
|
733
|
-
{
|
734
|
-
to: 'tuiIconTdsEyeSmallPragmatic',
|
735
|
-
from: 'tuiIconEyeOpen',
|
736
|
-
},
|
737
|
-
{
|
738
|
-
to: 'tuiIconTdsEyeSmallPragmatic',
|
739
|
-
from: 'tuiIconShow',
|
740
|
-
},
|
741
|
-
{
|
742
|
-
to: 'tuiIconTdsEyeMediumPragmatic',
|
743
|
-
from: 'tuiIconShowLarge',
|
744
|
-
},
|
745
|
-
{
|
746
|
-
to: 'tuiIconTdsEyeSmallPragmatic',
|
747
|
-
from: 'tuiIconEye',
|
748
|
-
},
|
749
|
-
{
|
750
|
-
to: 'tuiIconTdsEyeMediumPragmatic',
|
751
|
-
from: 'tuiIconEyeLarge',
|
752
|
-
},
|
753
|
-
{
|
754
|
-
to: 'tuiIconTdsEyeOffSmallPragmatic',
|
755
|
-
from: 'tuiIconEyeClosed',
|
756
|
-
},
|
757
|
-
{
|
758
|
-
to: 'tuiIconTdsEyeOffSmallPragmatic',
|
759
|
-
from: 'tuiIconHide',
|
760
|
-
},
|
761
|
-
{
|
762
|
-
to: 'tuiIconTdsEyeOffMediumPragmatic',
|
763
|
-
from: 'tuiIconHideLarge',
|
764
|
-
},
|
765
|
-
{
|
766
|
-
to: 'tuiIconTdsEyeOffSmallPragmatic',
|
767
|
-
from: 'tuiIconEyeOff',
|
768
|
-
},
|
769
|
-
{
|
770
|
-
to: 'tuiIconTdsEyeOffMediumPragmatic',
|
771
|
-
from: 'tuiIconEyeOffLarge',
|
772
|
-
},
|
773
|
-
{
|
774
|
-
to: 'tuiIconTdsDenyMediumPragmatic',
|
775
|
-
from: 'tuiIconFailLarge',
|
776
|
-
},
|
777
|
-
{
|
778
|
-
to: 'tuiIconTdsStarMediumPragmatic',
|
779
|
-
from: 'tuiIconFavoriteLarge',
|
780
|
-
},
|
781
|
-
{
|
782
|
-
to: 'tuiIconTdsDocSmallPragmatic',
|
783
|
-
from: 'tuiIconDefaultDoc',
|
784
|
-
},
|
785
|
-
{
|
786
|
-
to: 'tuiIconTdsDocSmallPragmatic',
|
787
|
-
from: 'tuiIconFile',
|
788
|
-
},
|
789
|
-
{
|
790
|
-
to: 'tuiIconTdsDocMediumPragmatic',
|
791
|
-
from: 'tuiIconFileLarge',
|
792
|
-
},
|
793
|
-
{
|
794
|
-
to: 'tuiIconTdsDocMediumPragmatic',
|
795
|
-
from: 'tuiIconFileLargeOutline',
|
796
|
-
},
|
797
|
-
{
|
798
|
-
to: 'tuiIconTdsDocSmallPragmatic',
|
799
|
-
from: 'tuiIconFileOutline',
|
800
|
-
},
|
801
|
-
{
|
802
|
-
to: 'tuiIconTdsFilterSmallPragmatic',
|
803
|
-
from: 'tuiIconFilter',
|
804
|
-
},
|
805
|
-
{
|
806
|
-
to: 'tuiIconTdsFilterCrossSmallPragmatic',
|
807
|
-
from: 'tuiIconFilterClear',
|
808
|
-
},
|
809
|
-
{
|
810
|
-
to: 'tuiIconTdsFilterCrossMediumPragmatic',
|
811
|
-
from: 'tuiIconFilterClearLarge',
|
812
|
-
},
|
813
|
-
{
|
814
|
-
to: 'tuiIconTdsFilterCrossMediumPragmatic',
|
815
|
-
from: 'tuiIconFilterClearLargeOutline',
|
816
|
-
},
|
817
|
-
{
|
818
|
-
to: 'tuiIconTdsFilterCrossSmallPragmatic',
|
819
|
-
from: 'tuiIconFilterClearOutline',
|
820
|
-
},
|
821
|
-
{
|
822
|
-
to: 'tuiIconTdsFilterMediumPragmatic',
|
823
|
-
from: 'tuiIconFilterLarge',
|
824
|
-
},
|
825
|
-
{
|
826
|
-
to: 'tuiIconTdsFilterMediumPragmatic',
|
827
|
-
from: 'tuiIconFilterLargeOutline',
|
828
|
-
},
|
829
|
-
{
|
830
|
-
to: 'tuiIconTdsFilterSmallPragmatic',
|
831
|
-
from: 'tuiIconFilterOutline',
|
832
|
-
},
|
833
|
-
{
|
834
|
-
to: 'tuiIconTdsFilterPlusSmallPragmatic',
|
835
|
-
from: 'tuiIconFilterSave',
|
836
|
-
},
|
837
|
-
{
|
838
|
-
to: 'tuiIconTdsFilterPlusMediumPragmatic',
|
839
|
-
from: 'tuiIconFilterSaveLarge',
|
840
|
-
},
|
841
|
-
{
|
842
|
-
to: 'tuiIconTdsFilterPlusMediumPragmatic',
|
843
|
-
from: 'tuiIconFilterSaveLargeOutline',
|
844
|
-
},
|
845
|
-
{
|
846
|
-
to: 'tuiIconTdsFilterPlusSmallPragmatic',
|
847
|
-
from: 'tuiIconFilterSaveOutline',
|
848
|
-
},
|
849
|
-
{
|
850
|
-
to: 'tuiIconTdsFlagSmallPragmatic',
|
851
|
-
from: 'tuiIconFlag',
|
852
|
-
},
|
853
|
-
{
|
854
|
-
to: 'tuiIconTdsFlagMediumPragmatic',
|
855
|
-
from: 'tuiIconFlagLarge',
|
856
|
-
},
|
857
|
-
{
|
858
|
-
to: 'tuiIconTdsFlagMediumPragmatic',
|
859
|
-
from: 'tuiIconFlagLargeOutline',
|
860
|
-
},
|
861
|
-
{
|
862
|
-
to: 'tuiIconTdsFlagSmallPragmatic',
|
863
|
-
from: 'tuiIconFlagOutline',
|
864
|
-
},
|
865
|
-
{
|
866
|
-
to: 'tuiIconTdsFlashOnSmallPragmatic',
|
867
|
-
from: 'tuiIconFlash',
|
868
|
-
},
|
869
|
-
{
|
870
|
-
to: 'tuiIconTdsFlashMediumPragmatic',
|
871
|
-
from: 'tuiIconFlashLarge',
|
872
|
-
},
|
873
|
-
{
|
874
|
-
to: 'tuiIconTdsFlashMediumPragmatic',
|
875
|
-
from: 'tuiIconFlashLargeOutline',
|
876
|
-
},
|
877
|
-
{
|
878
|
-
to: 'tuiIconTdsFlashOffSmallPragmatic',
|
879
|
-
from: 'tuiIconFlashOff',
|
880
|
-
},
|
881
|
-
{
|
882
|
-
to: 'tuiIconTdsFlashOffMediumPragmatic',
|
883
|
-
from: 'tuiIconFlashOffLarge',
|
884
|
-
},
|
885
|
-
{
|
886
|
-
to: 'tuiIconTdsFlashOffMediumPragmatic',
|
887
|
-
from: 'tuiIconFlashOffLargeOutline',
|
888
|
-
},
|
889
|
-
{
|
890
|
-
to: 'tuiIconTdsFlashOffSmallPragmatic',
|
891
|
-
from: 'tuiIconFlashOffOutline',
|
892
|
-
},
|
893
|
-
{
|
894
|
-
to: 'tuiIconTdsFlashOnSmallPragmatic',
|
895
|
-
from: 'tuiIconFlashOutline',
|
896
|
-
},
|
897
|
-
{
|
898
|
-
to: 'tuiIconTdsFolderSmallPragmatic',
|
899
|
-
from: 'tuiIconFolder',
|
900
|
-
},
|
901
|
-
{
|
902
|
-
to: 'tuiIconTdsFolderMediumPragmatic',
|
903
|
-
from: 'tuiIconFolderLarge',
|
904
|
-
},
|
905
|
-
{
|
906
|
-
to: 'tuiIconTdsFolderMediumPragmatic',
|
907
|
-
from: 'tuiIconFolderLargeOutline',
|
908
|
-
},
|
909
|
-
{
|
910
|
-
to: 'tuiIconTdsFolderSmallPragmatic',
|
911
|
-
from: 'tuiIconFolderOutline',
|
912
|
-
},
|
913
|
-
{
|
914
|
-
to: 'tuiIconTdsWysiwygFontMediumPragmatic',
|
915
|
-
from: 'tuiIconFontLarge',
|
916
|
-
},
|
917
|
-
{
|
918
|
-
to: 'tuiIconTdsDenySmallPragmatic',
|
919
|
-
from: 'tuiIconForbidden',
|
920
|
-
},
|
921
|
-
{
|
922
|
-
to: 'tuiIconTdsWysiwygFontStylesMediumPragmatic',
|
923
|
-
from: 'tuiIconFormatLarge',
|
924
|
-
},
|
925
|
-
{
|
926
|
-
to: 'tuiIconTdsSnowflakeMediumPragmatic',
|
927
|
-
from: 'tuiIconFreezeLarge',
|
928
|
-
},
|
929
|
-
{
|
930
|
-
to: 'tuiIconTdsPhoneHangoffSmallPragmatic',
|
931
|
-
from: 'tuiIconHangup',
|
932
|
-
},
|
933
|
-
{
|
934
|
-
to: 'tuiIconTdsPhoneHangoffMediumPragmatic',
|
935
|
-
from: 'tuiIconHangupLarge',
|
936
|
-
},
|
937
|
-
{
|
938
|
-
to: 'tuiIconTdsHeadsetSmallPragmatic',
|
939
|
-
from: 'tuiIconHeadset',
|
940
|
-
},
|
941
|
-
{
|
942
|
-
to: 'tuiIconTdsHeadsetMediumPragmatic',
|
943
|
-
from: 'tuiIconHeadsetLarge',
|
944
|
-
},
|
945
|
-
{
|
946
|
-
to: 'tuiIconTdsHeartFilledSmall',
|
947
|
-
from: 'tuiIconHeartFilled',
|
948
|
-
},
|
949
|
-
{
|
950
|
-
to: 'tuiIconTdsHeartFilledSmall',
|
951
|
-
from: 'tuiIconHeart',
|
952
|
-
},
|
953
|
-
{
|
954
|
-
to: 'tuiIconTdsHeartFilledOpaqueMedium',
|
955
|
-
from: 'tuiIconHeartLarge',
|
956
|
-
},
|
957
|
-
{
|
958
|
-
to: 'tuiIconTdsHeartMediumPragmatic',
|
959
|
-
from: 'tuiIconHeartLargeOutline',
|
960
|
-
},
|
961
|
-
{
|
962
|
-
to: 'tuiIconTdsHeartSmallPragmatic',
|
963
|
-
from: 'tuiIconHeartOutline',
|
964
|
-
},
|
965
|
-
{
|
966
|
-
to: 'tuiIconTdsQuestionCircleSmall',
|
967
|
-
from: 'tuiIconHelp',
|
968
|
-
},
|
969
|
-
{
|
970
|
-
to: 'tuiIconTdsQuestionCircleSmall',
|
971
|
-
from: 'tuiIconTooltip',
|
972
|
-
},
|
973
|
-
{
|
974
|
-
to: 'tuiIconTdsQuestionCircleSmall',
|
975
|
-
from: 'tuiIconHelpCircle',
|
976
|
-
},
|
977
|
-
{
|
978
|
-
to: 'tuiIconTdsQuestionCircleMediumPragmatic',
|
979
|
-
from: 'tuiIconHelpCircleLarge',
|
980
|
-
},
|
981
|
-
{
|
982
|
-
to: 'tuiIconTdsQuestionCircleMediumPragmatic',
|
983
|
-
from: 'tuiIconHelpCircleLargeOutline',
|
984
|
-
},
|
985
|
-
{
|
986
|
-
to: 'tuiIconTdsQuestionCircleSmallPragmatic',
|
987
|
-
from: 'tuiIconHelpCircleOutline',
|
988
|
-
},
|
989
|
-
{
|
990
|
-
to: 'tuiIconTdsQuestionCircleSmallPragmatic',
|
991
|
-
from: 'tuiIconHelpOutline',
|
992
|
-
},
|
993
|
-
{
|
994
|
-
to: 'tuiIconTdsArrowClockSmallPragmatic',
|
995
|
-
from: 'tuiIconHistory',
|
996
|
-
},
|
997
|
-
{
|
998
|
-
to: 'tuiIconTdsArrowClockMediumPragmatic',
|
999
|
-
from: 'tuiIconHistoryLarge',
|
1000
|
-
},
|
1001
|
-
{
|
1002
|
-
to: 'tuiIconTdsHomeSmallPragmatic',
|
1003
|
-
from: 'tuiIconHome',
|
1004
|
-
},
|
1005
|
-
{
|
1006
|
-
to: 'tuiIconTdsHomeMediumPragmatic',
|
1007
|
-
from: 'tuiIconHomeLarge',
|
1008
|
-
},
|
1009
|
-
{
|
1010
|
-
to: 'tuiIconTdsHomeMediumPragmatic',
|
1011
|
-
from: 'tuiIconHomeLargeOutline',
|
1012
|
-
},
|
1013
|
-
{
|
1014
|
-
to: 'tuiIconTdsHomeSmallPragmatic',
|
1015
|
-
from: 'tuiIconHomeOutline',
|
1016
|
-
},
|
1017
|
-
{
|
1018
|
-
to: 'tuiIconTdsWysiwygDividerMediumPragmatic',
|
1019
|
-
from: 'tuiIconHrLarge',
|
1020
|
-
},
|
1021
|
-
{
|
1022
|
-
to: 'tuiIconTdsImageSmallPragmatic',
|
1023
|
-
from: 'tuiIconImg',
|
1024
|
-
},
|
1025
|
-
{
|
1026
|
-
to: 'tuiIconTdsImageSmallPragmatic',
|
1027
|
-
from: 'tuiIconPicture',
|
1028
|
-
},
|
1029
|
-
{
|
1030
|
-
to: 'tuiIconTdsImageSmallPragmatic',
|
1031
|
-
from: 'tuiIconImage',
|
1032
|
-
},
|
1033
|
-
{
|
1034
|
-
to: 'tuiIconTdsImageMediumPragmatic',
|
1035
|
-
from: 'tuiIconImageLarge',
|
1036
|
-
},
|
1037
|
-
{
|
1038
|
-
to: 'tuiIconTdsImageSmallPragmatic',
|
1039
|
-
from: 'tuiIconImageOutline',
|
1040
|
-
},
|
1041
|
-
{
|
1042
|
-
to: 'tuiIconTdsWysiwygTextShiftRightMediumPragmatic',
|
1043
|
-
from: 'tuiIconIndentLarge',
|
1044
|
-
},
|
1045
|
-
{
|
1046
|
-
to: 'tuiIconTdsInfoCircleMedium',
|
1047
|
-
from: 'tuiIconInfoCircle',
|
1048
|
-
},
|
1049
|
-
{
|
1050
|
-
to: 'tuiIconTdsInfoCircleMedium',
|
1051
|
-
from: 'tuiIconInfo',
|
1052
|
-
},
|
1053
|
-
{
|
1054
|
-
to: 'tuiIconTdsInfoCircleMedium',
|
1055
|
-
from: 'tuiIconInfoCircleLarge',
|
1056
|
-
},
|
1057
|
-
{
|
1058
|
-
to: 'tuiIconTdsInfoCircleMediumPragmatic',
|
1059
|
-
from: 'tuiIconInfoCircleLargeOutline',
|
1060
|
-
},
|
1061
|
-
{
|
1062
|
-
to: 'tuiIconTdsInfoMediumPragmatic',
|
1063
|
-
from: 'tuiIconInfoLarge',
|
1064
|
-
},
|
1065
|
-
{
|
1066
|
-
to: 'tuiIconTdsInfoCircleMediumPragmatic',
|
1067
|
-
from: 'tuiIconInfoLargeOutline',
|
1068
|
-
},
|
1069
|
-
{
|
1070
|
-
to: 'tuiIconTdsInfoCircleSmallPragmatic',
|
1071
|
-
from: 'tuiIconInfoOutline',
|
1072
|
-
},
|
1073
|
-
{
|
1074
|
-
to: 'tuiIconTdsDocMediumPragmatic',
|
1075
|
-
from: 'tuiIconInvoiceLarge',
|
1076
|
-
},
|
1077
|
-
{
|
1078
|
-
to: 'tuiIconTdsWysiwygFontItalicMediumPragmatic',
|
1079
|
-
from: 'tuiIconItalicLarge',
|
1080
|
-
},
|
1081
|
-
{
|
1082
|
-
to: 'tuiIconTdsThumbUpMediumPragmatic',
|
1083
|
-
from: 'tuiIconLarge',
|
1084
|
-
},
|
1085
|
-
{
|
1086
|
-
to: 'tuiIconTdsFrameSmallPragmatic',
|
1087
|
-
from: 'tuiIconFrame',
|
1088
|
-
},
|
1089
|
-
{
|
1090
|
-
to: 'tuiIconTdsFrameSmallPragmatic',
|
1091
|
-
from: 'tuiIconLayout',
|
1092
|
-
},
|
1093
|
-
{
|
1094
|
-
to: 'tuiIconTdsFrameMediumPragmatic',
|
1095
|
-
from: 'tuiIconLayoutLarge',
|
1096
|
-
},
|
1097
|
-
{
|
1098
|
-
to: 'tuiIconTdsFrameMediumPragmatic',
|
1099
|
-
from: 'tuiIconLayoutLargeOutline',
|
1100
|
-
},
|
1101
|
-
{
|
1102
|
-
to: 'tuiIconTdsFrameSmallPragmatic',
|
1103
|
-
from: 'tuiIconLayoutOutline',
|
1104
|
-
},
|
1105
|
-
{
|
1106
|
-
to: 'tuiIconTdsMathLessSmallPragmatic',
|
1107
|
-
from: 'tuiIconLess',
|
1108
|
-
},
|
1109
|
-
{
|
1110
|
-
to: 'tuiIconTdsMathLessMediumPragmatic',
|
1111
|
-
from: 'tuiIconLessLarge',
|
1112
|
-
},
|
1113
|
-
{
|
1114
|
-
to: 'tuiIconTdsMathLessOrEqualSmallPragmatic',
|
1115
|
-
from: 'tuiIconLessOrEqual',
|
1116
|
-
},
|
1117
|
-
{
|
1118
|
-
to: 'tuiIconTdsMathLessOrEqualMediumPragmatic',
|
1119
|
-
from: 'tuiIconLessOrEqualLarge',
|
1120
|
-
},
|
1121
|
-
{
|
1122
|
-
to: 'tuiIconTdsLinkSmallPragmatic',
|
1123
|
-
from: 'tuiIconLink',
|
1124
|
-
},
|
1125
|
-
{
|
1126
|
-
to: 'tuiIconTdsLinkMediumPragmatic',
|
1127
|
-
from: 'tuiIconLinkLarge',
|
1128
|
-
},
|
1129
|
-
{
|
1130
|
-
to: 'tuiIconTdsListPreviewSmallPragmatic',
|
1131
|
-
from: 'tuiIconViewList',
|
1132
|
-
},
|
1133
|
-
{
|
1134
|
-
to: 'tuiIconTdsListPreviewSmallPragmatic',
|
1135
|
-
from: 'tuiIconList',
|
1136
|
-
},
|
1137
|
-
{
|
1138
|
-
to: 'tuiIconTdsWysiwygListBulletedMediumPragmatic',
|
1139
|
-
from: 'tuiIconListLarge',
|
1140
|
-
},
|
1141
|
-
{
|
1142
|
-
to: 'tuiIconTdsListPreviewSmallPragmatic',
|
1143
|
-
from: 'tuiIconListOutline',
|
1144
|
-
},
|
1145
|
-
{
|
1146
|
-
to: 'tuiIconTdsLockSmallPragmatic',
|
1147
|
-
from: 'tuiIconLock',
|
1148
|
-
},
|
1149
|
-
{
|
1150
|
-
to: 'tuiIconTdsLockMediumPragmatic',
|
1151
|
-
from: 'tuiIconLockLarge',
|
1152
|
-
},
|
1153
|
-
{
|
1154
|
-
to: 'tuiIconTdsLockMediumPragmatic',
|
1155
|
-
from: 'tuiIconLockLargeOutline',
|
1156
|
-
},
|
1157
|
-
{
|
1158
|
-
to: 'tuiIconTdsLockOpenMediumPragmatic',
|
1159
|
-
from: 'tuiIconLockOpenLarge',
|
1160
|
-
},
|
1161
|
-
{
|
1162
|
-
to: 'tuiIconTdsLockOpenMediumPragmatic',
|
1163
|
-
from: 'tuiIconLockOpenLargeOutline',
|
1164
|
-
},
|
1165
|
-
{
|
1166
|
-
to: 'tuiIconTdsLockSmallPragmatic',
|
1167
|
-
from: 'tuiIconLockOutline',
|
1168
|
-
},
|
1169
|
-
{
|
1170
|
-
to: 'tuiIconTdsArrowInRightSmallPragmatic',
|
1171
|
-
from: 'tuiIconLogin',
|
1172
|
-
},
|
1173
|
-
{
|
1174
|
-
to: 'tuiIconTdsArrowInRightMediumPragmatic',
|
1175
|
-
from: 'tuiIconLoginLarge',
|
1176
|
-
},
|
1177
|
-
{
|
1178
|
-
to: 'tuiIconTdsArrowOutRightMediumPragmatic',
|
1179
|
-
from: 'tuiIconLogoutLarge',
|
1180
|
-
},
|
1181
|
-
{
|
1182
|
-
to: 'tuiIconTdsArrowOutRightMediumPragmatic',
|
1183
|
-
from: 'tuiIconLogoutLargeOutline',
|
1184
|
-
},
|
1185
|
-
{
|
1186
|
-
to: 'tuiIconTdsLetterSmallPragmatic',
|
1187
|
-
from: 'tuiIconMail',
|
1188
|
-
},
|
1189
|
-
{
|
1190
|
-
to: 'tuiIconTdsLetterMediumPragmatic',
|
1191
|
-
from: 'tuiIconMailLarge',
|
1192
|
-
},
|
1193
|
-
{
|
1194
|
-
to: 'tuiIconTdsLetterMediumPragmatic',
|
1195
|
-
from: 'tuiIconMailLargeOutline',
|
1196
|
-
},
|
1197
|
-
{
|
1198
|
-
to: 'tuiIconTdsLetterSmallPragmatic',
|
1199
|
-
from: 'tuiIconMailOutline',
|
1200
|
-
},
|
1201
|
-
{
|
1202
|
-
to: 'tuiIconTdsPinGeoSmallPragmatic',
|
1203
|
-
from: 'tuiIconGeo',
|
1204
|
-
},
|
1205
|
-
{
|
1206
|
-
to: 'tuiIconTdsPinGeoSmallPragmatic',
|
1207
|
-
from: 'tuiIconMapPin',
|
1208
|
-
},
|
1209
|
-
{
|
1210
|
-
to: 'tuiIconTdsPinGeoMediumPragmatic',
|
1211
|
-
from: 'tuiIconMapPinLarge',
|
1212
|
-
},
|
1213
|
-
{
|
1214
|
-
to: 'tuiIconTdsPinGeoMediumPragmatic',
|
1215
|
-
from: 'tuiIconMapPinLargeOutline',
|
1216
|
-
},
|
1217
|
-
{
|
1218
|
-
to: 'tuiIconTdsPinGeoSmallPragmatic',
|
1219
|
-
from: 'tuiIconMapPinOutline',
|
1220
|
-
},
|
1221
|
-
{
|
1222
|
-
to: 'tuiIconTdsArrowsExpandSmallPragmatic',
|
1223
|
-
from: 'tuiIconExpand',
|
1224
|
-
},
|
1225
|
-
{
|
1226
|
-
to: 'tuiIconTdsArrowsExpandSmallPragmatic',
|
1227
|
-
from: 'tuiIconMaximize',
|
1228
|
-
},
|
1229
|
-
{
|
1230
|
-
to: 'tuiIconTdsWysiwygAlignJustifyMediumPragmatic',
|
1231
|
-
from: 'tuiIconMenuLarge',
|
1232
|
-
},
|
1233
|
-
{
|
1234
|
-
to: 'tuiIconTdsChatArrowRightSmallPragmatic',
|
1235
|
-
from: 'tuiIconCommentFw',
|
1236
|
-
},
|
1237
|
-
{
|
1238
|
-
to: 'tuiIconTdsChatArrowRightSmallPragmatic',
|
1239
|
-
from: 'tuiIconMessageForward',
|
1240
|
-
},
|
1241
|
-
{
|
1242
|
-
to: 'tuiIconTdsChatArrowRightMediumPragmatic',
|
1243
|
-
from: 'tuiIconMessageForwardLarge',
|
1244
|
-
},
|
1245
|
-
{
|
1246
|
-
to: 'tuiIconTdsChatArrowRightMediumPragmatic',
|
1247
|
-
from: 'tuiIconMessageForwardLargeOutline',
|
1248
|
-
},
|
1249
|
-
{
|
1250
|
-
to: 'tuiIconTdsChatArrowRightSmallPragmatic',
|
1251
|
-
from: 'tuiIconMessageForwardOutline',
|
1252
|
-
},
|
1253
|
-
{
|
1254
|
-
to: 'tuiIconTdsChatSmallPragmatic',
|
1255
|
-
from: 'tuiIconComment',
|
1256
|
-
},
|
1257
|
-
{
|
1258
|
-
to: 'tuiIconTdsChatSmallPragmatic',
|
1259
|
-
from: 'tuiIconMessageSquare',
|
1260
|
-
},
|
1261
|
-
{
|
1262
|
-
to: 'tuiIconTdsChatMediumPragmatic',
|
1263
|
-
from: 'tuiIconMessageSquareLarge',
|
1264
|
-
},
|
1265
|
-
{
|
1266
|
-
to: 'tuiIconTdsChatMediumPragmatic',
|
1267
|
-
from: 'tuiIconMessageSquareLargeOutline',
|
1268
|
-
},
|
1269
|
-
{
|
1270
|
-
to: 'tuiIconTdsChatSmallPragmatic',
|
1271
|
-
from: 'tuiIconMessageSquareOutline',
|
1272
|
-
},
|
1273
|
-
{
|
1274
|
-
to: 'tuiIconTdsMicrophoneOnSmallPragmatic',
|
1275
|
-
from: 'tuiIconMic',
|
1276
|
-
},
|
1277
|
-
{
|
1278
|
-
to: 'tuiIconTdsMicMediumPragmatic',
|
1279
|
-
from: 'tuiIconMicLarge',
|
1280
|
-
},
|
1281
|
-
{
|
1282
|
-
to: 'tuiIconTdsMicMediumPragmatic',
|
1283
|
-
from: 'tuiIconMicLargeOutline',
|
1284
|
-
},
|
1285
|
-
{
|
1286
|
-
to: 'tuiIconTdsMicrophoneOffSmallPragmatic',
|
1287
|
-
from: 'tuiIconMicOff',
|
1288
|
-
},
|
1289
|
-
{
|
1290
|
-
to: 'tuiIconTdsMicOffMediumPragmatic',
|
1291
|
-
from: 'tuiIconMicOffLarge',
|
1292
|
-
},
|
1293
|
-
{
|
1294
|
-
to: 'tuiIconTdsMicOffMediumPragmatic',
|
1295
|
-
from: 'tuiIconMicOffLargeOutline',
|
1296
|
-
},
|
1297
|
-
{
|
1298
|
-
to: 'tuiIconTdsMicrophoneOffSmallPragmatic',
|
1299
|
-
from: 'tuiIconMicOffOutline',
|
1300
|
-
},
|
1301
|
-
{
|
1302
|
-
to: 'tuiIconTdsArrowsCollapseSmallPragmatic',
|
1303
|
-
from: 'tuiIconCollapse',
|
1304
|
-
},
|
1305
|
-
{
|
1306
|
-
to: 'tuiIconTdsArrowsCollapseSmallPragmatic',
|
1307
|
-
from: 'tuiIconMinimize',
|
1308
|
-
},
|
1309
|
-
{
|
1310
|
-
to: 'tuiIconTdsMinus2SmallPragmatic',
|
1311
|
-
from: 'tuiIconMinus',
|
1312
|
-
},
|
1313
|
-
{
|
1314
|
-
to: 'tuiIconTdsMinusCircleSmallPragmatic',
|
1315
|
-
from: 'tuiIconMinusCircle',
|
1316
|
-
},
|
1317
|
-
{
|
1318
|
-
to: 'tuiIconTdsMinusCircleMediumPragmatic',
|
1319
|
-
from: 'tuiIconMinusCircleLarge',
|
1320
|
-
},
|
1321
|
-
{
|
1322
|
-
to: 'tuiIconTdsMinusCircleSmallPragmatic',
|
1323
|
-
from: 'tuiIconMinusCircleOutline',
|
1324
|
-
},
|
1325
|
-
{
|
1326
|
-
to: 'tuiIconTdsMinusMediumPragmatic',
|
1327
|
-
from: 'tuiIconMinusLarge',
|
1328
|
-
},
|
1329
|
-
{
|
1330
|
-
to: 'tuiIconTdsMicrophoneOnSmallPragmatic',
|
1331
|
-
from: 'tuiIconMoc',
|
1332
|
-
},
|
1333
|
-
{
|
1334
|
-
to: 'tuiIconTdsDeviceDesktopSmallPragmatic',
|
1335
|
-
from: 'tuiIconMonitor',
|
1336
|
-
},
|
1337
|
-
{
|
1338
|
-
to: 'tuiIconTdsDeviceDesktopMediumPragmatic',
|
1339
|
-
from: 'tuiIconMonitorLarge',
|
1340
|
-
},
|
1341
|
-
{
|
1342
|
-
to: 'tuiIconTdsDeviceDesktopMediumPragmatic',
|
1343
|
-
from: 'tuiIconMonitorLargeOutline',
|
1344
|
-
},
|
1345
|
-
{
|
1346
|
-
to: 'tuiIconTdsDeviceDesktopOffMediumPragmatic',
|
1347
|
-
from: 'tuiIconMonitorOffLarge',
|
1348
|
-
},
|
1349
|
-
{
|
1350
|
-
to: 'tuiIconTdsDeviceDesktopOffMediumPragmatic',
|
1351
|
-
from: 'tuiIconMonitorOffLargeOutline',
|
1352
|
-
},
|
1353
|
-
{
|
1354
|
-
to: 'tuiIconTdsDeviceDesktopSmallPragmatic',
|
1355
|
-
from: 'tuiIconMonitorOutline',
|
1356
|
-
},
|
1357
|
-
{
|
1358
|
-
to: 'tuiIconTdsMathMoreSmallPragmatic',
|
1359
|
-
from: 'tuiIconMore',
|
1360
|
-
},
|
1361
|
-
{
|
1362
|
-
to: 'tuiIconTdsMoreCircleSmallPragmatic',
|
1363
|
-
from: 'tuiIconMoreCircle',
|
1364
|
-
},
|
1365
|
-
{
|
1366
|
-
to: 'tuiIconTdsMoreCircleMediumPragmatic',
|
1367
|
-
from: 'tuiIconMoreCircleLarge',
|
1368
|
-
},
|
1369
|
-
{
|
1370
|
-
to: 'tuiIconTdsMoreCircleMediumPragmatic',
|
1371
|
-
from: 'tuiIconMoreCircleLargeOutline',
|
1372
|
-
},
|
1373
|
-
{
|
1374
|
-
to: 'tuiIconTdsMoreCircleSmallPragmatic',
|
1375
|
-
from: 'tuiIconMoreCircleOutline',
|
1376
|
-
},
|
1377
|
-
{
|
1378
|
-
to: 'tuiIconTdsMoreSmallPragmatic',
|
1379
|
-
from: 'tuiIconMoreHor',
|
1380
|
-
},
|
1381
|
-
{
|
1382
|
-
to: 'tuiIconTdsMoreSmallPragmatic',
|
1383
|
-
from: 'tuiIconMoreHorizontal',
|
1384
|
-
},
|
1385
|
-
{
|
1386
|
-
to: 'tuiIconTdsMoreMediumPragmatic',
|
1387
|
-
from: 'tuiIconMoreHorLarge',
|
1388
|
-
},
|
1389
|
-
{
|
1390
|
-
to: 'tuiIconTdsMoreMediumPragmatic',
|
1391
|
-
from: 'tuiIconMoreHorizontalLarge',
|
1392
|
-
},
|
1393
|
-
{
|
1394
|
-
to: 'tuiIconTdsMathMoreMediumPragmatic',
|
1395
|
-
from: 'tuiIconMoreLarge',
|
1396
|
-
},
|
1397
|
-
{
|
1398
|
-
to: 'tuiIconTdsMathMoreOrEqualSmallPragmatic',
|
1399
|
-
from: 'tuiIconMoreOrEqual',
|
1400
|
-
},
|
1401
|
-
{
|
1402
|
-
to: 'tuiIconTdsMathMoreOrEqualMediumPragmatic',
|
1403
|
-
from: 'tuiIconMoreOrEqualLarge',
|
1404
|
-
},
|
1405
|
-
{
|
1406
|
-
to: 'tuiIconTdsMoreVerticalSmallPragmatic',
|
1407
|
-
from: 'tuiIconMoreVert',
|
1408
|
-
},
|
1409
|
-
{
|
1410
|
-
to: 'tuiIconTdsMoreVerticalSmallPragmatic',
|
1411
|
-
from: 'tuiIconMoreVer',
|
1412
|
-
},
|
1413
|
-
{
|
1414
|
-
to: 'tuiIconTdsMoreVerticalSmallPragmatic',
|
1415
|
-
from: 'tuiIconMoreVertical',
|
1416
|
-
},
|
1417
|
-
{
|
1418
|
-
to: 'tuiIconTdsMoreVerticalMediumPragmatic',
|
1419
|
-
from: 'tuiIconMoreVerticalLarge',
|
1420
|
-
},
|
1421
|
-
{
|
1422
|
-
to: 'tuiIconTdsMoreVerticalMediumPragmatic',
|
1423
|
-
from: 'tuiIconMoreVertLarge',
|
1424
|
-
},
|
1425
|
-
{
|
1426
|
-
to: 'tuiIconTdsMusicSmallPragmatic',
|
1427
|
-
from: 'tuiIconMusic',
|
1428
|
-
},
|
1429
|
-
{
|
1430
|
-
to: 'tuiIconTdsMusicMediumPragmatic',
|
1431
|
-
from: 'tuiIconMusicLarge',
|
1432
|
-
},
|
1433
|
-
{
|
1434
|
-
to: 'tuiIconTdsMusicMediumPragmatic',
|
1435
|
-
from: 'tuiIconMusicLargeOutline',
|
1436
|
-
},
|
1437
|
-
{
|
1438
|
-
to: 'tuiIconTdsMusicSmallPragmatic',
|
1439
|
-
from: 'tuiIconMusicOutline',
|
1440
|
-
},
|
1441
|
-
{
|
1442
|
-
to: 'tuiIconTdsArrowLeftSmallPragmatic',
|
1443
|
-
from: 'tuiIconNavBack',
|
1444
|
-
},
|
1445
|
-
{
|
1446
|
-
to: 'tuiIconTdsListSmallPragmatic',
|
1447
|
-
from: 'tuiIconNavMenu',
|
1448
|
-
},
|
1449
|
-
{
|
1450
|
-
to: 'tuiIconTdsBellSmallPragmatic',
|
1451
|
-
from: 'tuiIconNotification',
|
1452
|
-
},
|
1453
|
-
{
|
1454
|
-
to: 'tuiIconTdsBellPlusSmallPragmatic',
|
1455
|
-
from: 'tuiIconNotificationAdd',
|
1456
|
-
},
|
1457
|
-
{
|
1458
|
-
to: 'tuiIconTdsBellOffSmallPragmatic',
|
1459
|
-
from: 'tuiIconNotificationOff',
|
1460
|
-
},
|
1461
|
-
{
|
1462
|
-
to: 'tuiIconTdsBellOffSmallPragmatic',
|
1463
|
-
from: 'tuiIconNotificationOffFilled',
|
1464
|
-
},
|
1465
|
-
{
|
1466
|
-
to: 'tuiIconTdsBellOffMediumPragmatic',
|
1467
|
-
from: 'tuiIconNotificationOffFilledLarge',
|
1468
|
-
},
|
1469
|
-
{
|
1470
|
-
to: 'tuiIconTdsBellOffMediumPragmatic',
|
1471
|
-
from: 'tuiIconNotificationOffLarge',
|
1472
|
-
},
|
1473
|
-
{
|
1474
|
-
to: 'tuiIconTdsBellMediumPragmatic',
|
1475
|
-
from: 'tuiIconNotificationOutline',
|
1476
|
-
},
|
1477
|
-
{
|
1478
|
-
to: 'tuiIconTdsWysiwygListNumberedMediumPragmatic',
|
1479
|
-
from: 'tuiIconOLLarge',
|
1480
|
-
},
|
1481
|
-
{
|
1482
|
-
to: 'tuiIconTdsWysiwygTextShiftLeftMediumPragmatic',
|
1483
|
-
from: 'tuiIconOutdentLarge',
|
1484
|
-
},
|
1485
|
-
{
|
1486
|
-
to: 'tuiIconTdsWysiwygColorMediumPragmatic',
|
1487
|
-
from: 'tuiIconPaintLarge',
|
1488
|
-
},
|
1489
|
-
{
|
1490
|
-
to: 'tuiIconTdsPaperClipSmallPragmatic',
|
1491
|
-
from: 'tuiIconAttach',
|
1492
|
-
},
|
1493
|
-
{
|
1494
|
-
to: 'tuiIconTdsPaperClipSmallPragmatic',
|
1495
|
-
from: 'tuiIconPaperclip',
|
1496
|
-
},
|
1497
|
-
{
|
1498
|
-
to: 'tuiIconTdsPaperClipMediumPragmatic',
|
1499
|
-
from: 'tuiIconPaperclipLarge',
|
1500
|
-
},
|
1501
|
-
{
|
1502
|
-
to: 'tuiIconTdsParkingSmallPragmatic',
|
1503
|
-
from: 'tuiIconParking',
|
1504
|
-
},
|
1505
|
-
{
|
1506
|
-
to: 'tuiIconTdsParkingMediumPragmatic',
|
1507
|
-
from: 'tuiIconParkingLarge',
|
1508
|
-
},
|
1509
|
-
{
|
1510
|
-
to: 'tuiIconTdsParkingMediumPragmatic',
|
1511
|
-
from: 'tuiIconParkingLargeOutline',
|
1512
|
-
},
|
1513
|
-
{
|
1514
|
-
to: 'tuiIconTdsParkingSmallPragmatic',
|
1515
|
-
from: 'tuiIconParkingOutline',
|
1516
|
-
},
|
1517
|
-
{
|
1518
|
-
to: 'tuiIconTdsPauseSmallPragmatic',
|
1519
|
-
from: 'tuiIconPause',
|
1520
|
-
},
|
1521
|
-
{
|
1522
|
-
to: 'tuiIconTdsPauseMediumPragmatic',
|
1523
|
-
from: 'tuiIconPauseLarge',
|
1524
|
-
},
|
1525
|
-
{
|
1526
|
-
to: 'tuiIconTdsPercentSmallPragmatic',
|
1527
|
-
from: 'tuiIconPercent',
|
1528
|
-
},
|
1529
|
-
{
|
1530
|
-
to: 'tuiIconTdsPercentMediumPragmatic',
|
1531
|
-
from: 'tuiIconPercentLarge',
|
1532
|
-
},
|
1533
|
-
{
|
1534
|
-
to: 'tuiIconTdsPhoneSmallPragmatic',
|
1535
|
-
from: 'tuiIconCall',
|
1536
|
-
},
|
1537
|
-
{
|
1538
|
-
to: 'tuiIconTdsPhoneSmallPragmatic',
|
1539
|
-
from: 'tuiIconPhone',
|
1540
|
-
},
|
1541
|
-
{
|
1542
|
-
to: 'tuiIconTdsPhoneArrowDoubleRightSmallPragmatic',
|
1543
|
-
from: 'tuiIconPhoneForwarded',
|
1544
|
-
},
|
1545
|
-
{
|
1546
|
-
to: 'tuiIconTdsPhoneArrowDoubleRightMediumPragmatic',
|
1547
|
-
from: 'tuiIconPhoneForwardedLarge',
|
1548
|
-
},
|
1549
|
-
{
|
1550
|
-
to: 'tuiIconTdsPhoneMediumPragmatic',
|
1551
|
-
from: 'tuiIconPhoneLarge',
|
1552
|
-
},
|
1553
|
-
{
|
1554
|
-
to: 'tuiIconTdsPhoneMediumPragmatic',
|
1555
|
-
from: 'tuiIconPhoneLargeOutline',
|
1556
|
-
},
|
1557
|
-
{
|
1558
|
-
to: 'tuiIconTdsPhoneArrowRightSmallPragmatic',
|
1559
|
-
from: 'tuiIconPhoneOutgoing',
|
1560
|
-
},
|
1561
|
-
{
|
1562
|
-
to: 'tuiIconTdsPhoneArrowRightMediumPragmatic',
|
1563
|
-
from: 'tuiIconPhoneOutgoingLarge',
|
1564
|
-
},
|
1565
|
-
{
|
1566
|
-
to: 'tuiIconTdsImageSmallPragmatic',
|
1567
|
-
from: 'tuiIconPictureOutline',
|
1568
|
-
},
|
1569
|
-
{
|
1570
|
-
to: 'tuiIconTdsChartPieMediumPragmatic',
|
1571
|
-
from: 'tuiIconPieChartLarge',
|
1572
|
-
},
|
1573
|
-
{
|
1574
|
-
to: 'tuiIconTdsChartPieMediumPragmatic',
|
1575
|
-
from: 'tuiIconPiechartLargeOutline',
|
1576
|
-
},
|
1577
|
-
{
|
1578
|
-
to: 'tuiIconTdsPinSmallPragmatic',
|
1579
|
-
from: 'tuiIconPinned',
|
1580
|
-
},
|
1581
|
-
{
|
1582
|
-
to: 'tuiIconTdsPinMediumPragmatic',
|
1583
|
-
from: 'tuiIconPinnedLarge',
|
1584
|
-
},
|
1585
|
-
{
|
1586
|
-
to: 'tuiIconTdsPinMediumPragmatic',
|
1587
|
-
from: 'tuiIconPinnedLargeOutline',
|
1588
|
-
},
|
1589
|
-
{
|
1590
|
-
to: 'tuiIconTdsPinSmallPragmatic',
|
1591
|
-
from: 'tuiIconPinnedOutline',
|
1592
|
-
},
|
1593
|
-
{
|
1594
|
-
to: 'tuiIconTdsPlaySmallPragmatic',
|
1595
|
-
from: 'tuiIconPlay',
|
1596
|
-
},
|
1597
|
-
{
|
1598
|
-
to: 'tuiIconTdsPlayMediumPragmatic',
|
1599
|
-
from: 'tuiIconPlayLarge',
|
1600
|
-
},
|
1601
|
-
{
|
1602
|
-
to: 'tuiIconTdsPlusSmallPragmatic',
|
1603
|
-
from: 'tuiIconPlus',
|
1604
|
-
},
|
1605
|
-
{
|
1606
|
-
to: 'tuiIconTdsPlusCircleSmallPragmatic',
|
1607
|
-
from: 'tuiIconPlusCircle',
|
1608
|
-
},
|
1609
|
-
{
|
1610
|
-
to: 'tuiIconTdsPlusCircleMediumPragmatic',
|
1611
|
-
from: 'tuiIconPlusCircleLarge',
|
1612
|
-
},
|
1613
|
-
{
|
1614
|
-
to: 'tuiIconTdsPlusCircleMediumPragmatic',
|
1615
|
-
from: 'tuiIconPlusCircleLargeOutline',
|
1616
|
-
},
|
1617
|
-
{
|
1618
|
-
to: 'tuiIconTdsPlusCircleSmallPragmatic',
|
1619
|
-
from: 'tuiIconPlusCircleOutline',
|
1620
|
-
},
|
1621
|
-
{
|
1622
|
-
to: 'tuiIconTdsPlusMediumPragmatic',
|
1623
|
-
from: 'tuiIconPlusLarge',
|
1624
|
-
},
|
1625
|
-
{
|
1626
|
-
to: 'tuiIconTdsPlus2SmallPragmatic',
|
1627
|
-
from: 'tuiIconPlusSmall',
|
1628
|
-
},
|
1629
|
-
{
|
1630
|
-
to: 'tuiIconTdsPrinterSmallPragmatic',
|
1631
|
-
from: 'tuiIconPrint',
|
1632
|
-
},
|
1633
|
-
{
|
1634
|
-
to: 'tuiIconTdsPrinterSmallPragmatic',
|
1635
|
-
from: 'tuiIconPrinter',
|
1636
|
-
},
|
1637
|
-
{
|
1638
|
-
to: 'tuiIconTdsPrinterMediumPragmatic',
|
1639
|
-
from: 'tuiIconPrinterLarge',
|
1640
|
-
},
|
1641
|
-
{
|
1642
|
-
to: 'tuiIconTdsPrinterMediumPragmatic',
|
1643
|
-
from: 'tuiIconPrinterLargeOutline',
|
1644
|
-
},
|
1645
|
-
{
|
1646
|
-
to: 'tuiIconTdsPrinterSmallPragmatic',
|
1647
|
-
from: 'tuiIconPrinterOutline',
|
1648
|
-
},
|
1649
|
-
{
|
1650
|
-
to: 'tuiIconTdsQrCodeSmallPragmatic',
|
1651
|
-
from: 'tuiIconQrCode',
|
1652
|
-
},
|
1653
|
-
{
|
1654
|
-
to: 'tuiIconTdsQrCodeMediumPragmatic',
|
1655
|
-
from: 'tuiIconQrCodeLarge',
|
1656
|
-
},
|
1657
|
-
{
|
1658
|
-
to: 'tuiIconTdsWysiwygQueueMediumPragmatic',
|
1659
|
-
from: 'tuiIconQueueLarge',
|
1660
|
-
},
|
1661
|
-
{
|
1662
|
-
to: 'tuiIconTdsWysiwygQuoteMediumPragmatic',
|
1663
|
-
from: 'tuiIconQuoteLarge',
|
1664
|
-
},
|
1665
|
-
{
|
1666
|
-
to: 'tuiIconTdsCheckDoubleSmallPragmatic',
|
1667
|
-
from: 'tuiIconRead',
|
1668
|
-
},
|
1669
|
-
{
|
1670
|
-
to: 'tuiIconTdsCheckDoubleMediumPragmatic',
|
1671
|
-
from: 'tuiIconReadLarge',
|
1672
|
-
},
|
1673
|
-
{
|
1674
|
-
to: 'tuiIconTdsReceiptSmallPragmatic',
|
1675
|
-
from: 'tuiIconReceipt',
|
1676
|
-
},
|
1677
|
-
{
|
1678
|
-
to: 'tuiIconTdsReceiptMediumPragmatic',
|
1679
|
-
from: 'tuiIconReceiptLarge',
|
1680
|
-
},
|
1681
|
-
{
|
1682
|
-
to: 'tuiIconTdsReceiptMediumPragmatic',
|
1683
|
-
from: 'tuiIconReceiptLargeOutline',
|
1684
|
-
},
|
1685
|
-
{
|
1686
|
-
to: 'tuiIconTdsArrowRepeatSmallPragmatic',
|
1687
|
-
from: 'tuiIconRedo',
|
1688
|
-
},
|
1689
|
-
{
|
1690
|
-
to: 'tuiIconTdsArrowRepeatMediumPragmatic',
|
1691
|
-
from: 'tuiIconRedoLarge',
|
1692
|
-
},
|
1693
|
-
{
|
1694
|
-
to: 'tuiIconTdsArrowsLeftRightSmallPragmatic',
|
1695
|
-
from: 'tuiIconRefresh',
|
1696
|
-
},
|
1697
|
-
{
|
1698
|
-
to: 'tuiIconTdsArrowsLeftRightMediumPragmatic',
|
1699
|
-
from: 'tuiIconRefreshLarge',
|
1700
|
-
},
|
1701
|
-
{
|
1702
|
-
to: 'tuiIconTdsArrowsLeftRightSmallPragmatic',
|
1703
|
-
from: 'tuiIconRefreshCw',
|
1704
|
-
},
|
1705
|
-
{
|
1706
|
-
to: 'tuiIconTdsArrowsLeftRightMediumPragmatic',
|
1707
|
-
from: 'tuiIconRefreshCwLarge',
|
1708
|
-
},
|
1709
|
-
{
|
1710
|
-
to: 'tuiIconTdsArrowRepeat2MediumPragmatic',
|
1711
|
-
from: 'tuiIconReloadLarge',
|
1712
|
-
},
|
1713
|
-
{
|
1714
|
-
to: 'tuiIconTdsArrowRepeat2MediumPragmatic',
|
1715
|
-
from: 'tuiIconRenewLarge',
|
1716
|
-
},
|
1717
|
-
{
|
1718
|
-
to: 'tuiIconTdsArrowReplySmallPragmatic',
|
1719
|
-
from: 'tuiIconReply',
|
1720
|
-
},
|
1721
|
-
{
|
1722
|
-
to: 'tuiIconTdsArrowReplyAllSmallPragmatic',
|
1723
|
-
from: 'tuiIconReplyAll',
|
1724
|
-
},
|
1725
|
-
{
|
1726
|
-
to: 'tuiIconTdsArrowReplyAllMediumPragmatic',
|
1727
|
-
from: 'tuiIconReplyAllLarge',
|
1728
|
-
},
|
1729
|
-
{
|
1730
|
-
to: 'tuiIconTdsArrowReplyAllMediumPragmatic',
|
1731
|
-
from: 'tuiIconReplyAllLargeOutline',
|
1732
|
-
},
|
1733
|
-
{
|
1734
|
-
to: 'tuiIconTdsArrowReplyMediumPragmatic',
|
1735
|
-
from: 'tuiIconReplyLarge',
|
1736
|
-
},
|
1737
|
-
{
|
1738
|
-
to: 'tuiIconTdsArrowReplyMediumPragmatic',
|
1739
|
-
from: 'tuiIconReplyLargeOutline',
|
1740
|
-
},
|
1741
|
-
{
|
1742
|
-
to: 'tuiIconTdsRotateSmallPragmatic',
|
1743
|
-
from: 'tuiIconRotate',
|
1744
|
-
},
|
1745
|
-
{
|
1746
|
-
to: 'tuiIconTdsRotateMediumPragmatic',
|
1747
|
-
from: 'tuiIconRotateLarge',
|
1748
|
-
},
|
1749
|
-
{
|
1750
|
-
to: 'tuiIconTdsRotateMediumPragmatic',
|
1751
|
-
from: 'tuiIconRotateLargeOutline',
|
1752
|
-
},
|
1753
|
-
{
|
1754
|
-
to: 'tuiIconTdsRotateSmallPragmatic',
|
1755
|
-
from: 'tuiIconRotateOutline',
|
1756
|
-
},
|
1757
|
-
{
|
1758
|
-
to: 'tuiIconTdsRouteSmallPragmatic',
|
1759
|
-
from: 'tuiIconRoute',
|
1760
|
-
},
|
1761
|
-
{
|
1762
|
-
to: 'tuiIconTdsRouteMediumPragmatic',
|
1763
|
-
from: 'tuiIconRouteLarge',
|
1764
|
-
},
|
1765
|
-
{
|
1766
|
-
to: 'tuiIconTdsRouteMediumPragmatic',
|
1767
|
-
from: 'tuiIconRouteLargeOutline',
|
1768
|
-
},
|
1769
|
-
{
|
1770
|
-
to: 'tuiIconTdsRouteSmallPragmatic',
|
1771
|
-
from: 'tuiIconRouteOutline',
|
1772
|
-
},
|
1773
|
-
{
|
1774
|
-
to: 'tuiIconTdsMagnifierSmallPragmatic',
|
1775
|
-
from: 'tuiIconSearch',
|
1776
|
-
},
|
1777
|
-
{
|
1778
|
-
to: 'tuiIconTdsMagnifierMediumPragmatic',
|
1779
|
-
from: 'tuiIconSearchLarge',
|
1780
|
-
},
|
1781
|
-
{
|
1782
|
-
to: 'tuiIconTdsPaperPlaneMediumPragmatic',
|
1783
|
-
from: 'tuiIconSendLarge',
|
1784
|
-
},
|
1785
|
-
{
|
1786
|
-
to: 'tuiIconTdsSettingsSmallPragmatic',
|
1787
|
-
from: 'tuiIconSettings',
|
1788
|
-
},
|
1789
|
-
{
|
1790
|
-
to: 'tuiIconTdsSettings2SmallPragmatic',
|
1791
|
-
from: 'tuiIconSettings2',
|
1792
|
-
},
|
1793
|
-
{
|
1794
|
-
to: 'tuiIconTdsSettingsMediumPragmatic',
|
1795
|
-
from: 'tuiIconSettingsLarge',
|
1796
|
-
},
|
1797
|
-
{
|
1798
|
-
to: 'tuiIconTdsSettings2MediumPragmatic',
|
1799
|
-
from: 'tuiIconSettingsLarge2',
|
1800
|
-
},
|
1801
|
-
{
|
1802
|
-
to: 'tuiIconTdsSettingsMediumPragmatic',
|
1803
|
-
from: 'tuiIconSettingsLargeOutline',
|
1804
|
-
},
|
1805
|
-
{
|
1806
|
-
to: 'tuiIconTdsSettingsSmallPragmatic',
|
1807
|
-
from: 'tuiIconSettingsOutline',
|
1808
|
-
},
|
1809
|
-
{
|
1810
|
-
to: 'tuiIconTdsShare2SmallPragmatic',
|
1811
|
-
from: 'tuiIconShare',
|
1812
|
-
},
|
1813
|
-
{
|
1814
|
-
to: 'tuiIconTdsShareMediumPragmatic',
|
1815
|
-
from: 'tuiIconShareLarge',
|
1816
|
-
},
|
1817
|
-
{
|
1818
|
-
to: 'tuiIconTdsShareMediumPragmatic',
|
1819
|
-
from: 'tuiIconShareLargeOutline',
|
1820
|
-
},
|
1821
|
-
{
|
1822
|
-
to: 'tuiIconTdsShare2SmallPragmatic',
|
1823
|
-
from: 'tuiIconShareOutline',
|
1824
|
-
},
|
1825
|
-
{
|
1826
|
-
to: 'tuiIconTdsPencilSmallPragmatic',
|
1827
|
-
from: 'tuiIconSign',
|
1828
|
-
},
|
1829
|
-
{
|
1830
|
-
to: 'tuiIconTdsPencilMediumPragmatic',
|
1831
|
-
from: 'tuiIconSignLarge',
|
1832
|
-
},
|
1833
|
-
{
|
1834
|
-
to: 'tuiIconTdsPencilSmallPragmatic',
|
1835
|
-
from: 'tuiIconSignOutline',
|
1836
|
-
},
|
1837
|
-
{
|
1838
|
-
to: 'tuiIconTdsDenyMediumPragmatic',
|
1839
|
-
from: 'tuiIconCancelCircle',
|
1840
|
-
},
|
1841
|
-
{
|
1842
|
-
to: 'tuiIconTdsDenyMediumPragmatic',
|
1843
|
-
from: 'tuiIconSlashLarge',
|
1844
|
-
},
|
1845
|
-
{
|
1846
|
-
to: 'tuiIconTdsGridBigSmallPragmatic',
|
1847
|
-
from: 'tuiIconSmallGrid',
|
1848
|
-
},
|
1849
|
-
{
|
1850
|
-
to: 'tuiIconTdsGridBigMediumPragmatic',
|
1851
|
-
from: 'tuiIconSmallGridLarge',
|
1852
|
-
},
|
1853
|
-
{
|
1854
|
-
to: 'tuiIconTdsSortUpSmallPragmatic',
|
1855
|
-
from: 'tuiIconSort',
|
1856
|
-
},
|
1857
|
-
{
|
1858
|
-
to: 'tuiIconTdsArrowSortDownSmallPragmatic',
|
1859
|
-
from: 'tuiIconSortAscending',
|
1860
|
-
},
|
1861
|
-
{
|
1862
|
-
to: 'tuiIconTdsArrowSortUpSmallPragmatic',
|
1863
|
-
from: 'tuiIconSortDescending',
|
1864
|
-
},
|
1865
|
-
{
|
1866
|
-
to: 'tuiIconTdsSortDownSmallPragmatic',
|
1867
|
-
from: 'tuiIconSortDown',
|
1868
|
-
},
|
1869
|
-
{
|
1870
|
-
to: 'tuiIconTdsArrowSortDownSmallPragmatic',
|
1871
|
-
from: 'tuiIconSortDown2',
|
1872
|
-
},
|
1873
|
-
{
|
1874
|
-
to: 'tuiIconTdsSortChevronsSmallPragmatic',
|
1875
|
-
from: 'tuiIconSortOff',
|
1876
|
-
},
|
1877
|
-
{
|
1878
|
-
to: 'tuiIconTdsSortUpSmallPragmatic',
|
1879
|
-
from: 'tuiIconSortUp',
|
1880
|
-
},
|
1881
|
-
{
|
1882
|
-
to: 'tuiIconTdsArrowSortUpSmallPragmatic',
|
1883
|
-
from: 'tuiIconSortUp2',
|
1884
|
-
},
|
1885
|
-
{
|
1886
|
-
to: 'tuiIconTdsArrowsSplitSmallPragmatic',
|
1887
|
-
from: 'tuiIconSplit',
|
1888
|
-
},
|
1889
|
-
{
|
1890
|
-
to: 'tuiIconTdsArrowsSplitMediumPragmatic',
|
1891
|
-
from: 'tuiIconSplitLarge',
|
1892
|
-
},
|
1893
|
-
{
|
1894
|
-
to: 'tuiIconTdsStopSmallPragmatic',
|
1895
|
-
from: 'tuiIconStop',
|
1896
|
-
},
|
1897
|
-
{
|
1898
|
-
to: 'tuiIconTdsStopSmallPragmatic',
|
1899
|
-
from: 'tuiIconSquare',
|
1900
|
-
},
|
1901
|
-
{
|
1902
|
-
to: 'tuiIconTdsStopMediumPragmatic',
|
1903
|
-
from: 'tuiIconSquareLarge',
|
1904
|
-
},
|
1905
|
-
{
|
1906
|
-
to: 'tuiIconTdsStarSmall',
|
1907
|
-
from: 'tuiIconStar',
|
1908
|
-
},
|
1909
|
-
{
|
1910
|
-
to: 'tuiIconTdsStarSmall',
|
1911
|
-
from: 'tuiIconStarFilled',
|
1912
|
-
},
|
1913
|
-
{
|
1914
|
-
to: 'tuiIconTdsStarMediumPragmatic',
|
1915
|
-
from: 'tuiIconStarLarge',
|
1916
|
-
},
|
1917
|
-
{
|
1918
|
-
to: 'tuiIconTdsStarMediumPragmatic',
|
1919
|
-
from: 'tuiIconStarLargeOutline',
|
1920
|
-
},
|
1921
|
-
{
|
1922
|
-
to: 'tuiIconTdsStarSmallPragmatic',
|
1923
|
-
from: 'tuiIconStarOutline',
|
1924
|
-
},
|
1925
|
-
{
|
1926
|
-
to: 'tuiIconTdsWysiwygFontStrikethroughMediumPragmatic',
|
1927
|
-
from: 'tuiIconStrikeThroughLarge',
|
1928
|
-
},
|
1929
|
-
{
|
1930
|
-
to: 'tuiIconTdsArrowSubRightSmallPragmatic',
|
1931
|
-
from: 'tuiIconSubitem',
|
1932
|
-
},
|
1933
|
-
{
|
1934
|
-
to: 'tuiIconTdsArrowSubRightMediumPragmatic',
|
1935
|
-
from: 'tuiIconSublevelLarge',
|
1936
|
-
},
|
1937
|
-
{
|
1938
|
-
to: 'tuiIconTdsWysiwygSubscriptMediumPragmatic',
|
1939
|
-
from: 'tuiIconSubscriptLarge',
|
1940
|
-
},
|
1941
|
-
{
|
1942
|
-
to: 'tuiIconTdsWysiwygSuperscriptMediumPragmatic',
|
1943
|
-
from: 'tuiIconSuperscriptLarge',
|
1944
|
-
},
|
1945
|
-
{
|
1946
|
-
to: 'tuiIconTdsWysiwygTableMediumPragmatic',
|
1947
|
-
from: 'tuiIconTableLarge',
|
1948
|
-
},
|
1949
|
-
{
|
1950
|
-
to: 'tuiIconTdsWysiwygTableMergeMediumPragmatic',
|
1951
|
-
from: 'tuiIconTableMergeLarge',
|
1952
|
-
},
|
1953
|
-
{
|
1954
|
-
to: 'tuiIconTdsWysiwygTableSplitMediumPragmatic',
|
1955
|
-
from: 'tuiIconTableSplitLarge',
|
1956
|
-
},
|
1957
|
-
{
|
1958
|
-
to: 'tuiIconTdsTagSmallPragmatic',
|
1959
|
-
from: 'tuiIconTag',
|
1960
|
-
},
|
1961
|
-
{
|
1962
|
-
to: 'tuiIconTdsTagMediumPragmatic',
|
1963
|
-
from: 'tuiIconTagLarge',
|
1964
|
-
},
|
1965
|
-
{
|
1966
|
-
to: 'tuiIconTdsTagMediumPragmatic',
|
1967
|
-
from: 'tuiIconTagLargeOutline',
|
1968
|
-
},
|
1969
|
-
{
|
1970
|
-
to: 'tuiIconTdsTagSmallPragmatic',
|
1971
|
-
from: 'tuiIconTagOutline',
|
1972
|
-
},
|
1973
|
-
{
|
1974
|
-
to: 'tuiIconTdsThumbDownMediumPragmatic',
|
1975
|
-
from: 'tuiIconThumbsDownLarge',
|
1976
|
-
},
|
1977
|
-
{
|
1978
|
-
to: 'tuiIconTdsThumbUpMediumPragmatic',
|
1979
|
-
from: 'tuiIconThumbsUpLarge',
|
1980
|
-
},
|
1981
|
-
{
|
1982
|
-
to: 'tuiIconTdsCheckSmallPragmatic',
|
1983
|
-
from: 'tuiIconToggleOn',
|
1984
|
-
},
|
1985
|
-
{
|
1986
|
-
to: 'tuiIconTdsCheckMediumPragmatic',
|
1987
|
-
from: 'tuiIconToggleOnLarge',
|
1988
|
-
},
|
1989
|
-
{
|
1990
|
-
to: 'tuiIconTdsPlusCircleMediumPragmatic',
|
1991
|
-
from: 'tuiIconTopUpLarge',
|
1992
|
-
},
|
1993
|
-
{
|
1994
|
-
to: 'tuiIconTdsDenyMediumPragmatic',
|
1995
|
-
from: 'tuiIconTransparentLarge',
|
1996
|
-
},
|
1997
|
-
{
|
1998
|
-
to: 'tuiIconTdsTrashSmallPragmatic',
|
1999
|
-
from: 'tuiIconTrash',
|
2000
|
-
},
|
2001
|
-
{
|
2002
|
-
to: 'tuiIconTdsTrashMediumPragmatic',
|
2003
|
-
from: 'tuiIconTrashLarge',
|
2004
|
-
},
|
2005
|
-
{
|
2006
|
-
to: 'tuiIconTdsTrashMediumPragmatic',
|
2007
|
-
from: 'tuiIconTrashLargeOutline',
|
2008
|
-
},
|
2009
|
-
{
|
2010
|
-
to: 'tuiIconTdsTrashSmallPragmatic',
|
2011
|
-
from: 'tuiIconTrashOutline',
|
2012
|
-
},
|
2013
|
-
{
|
2014
|
-
to: 'tuiIconTdsWysiwygFontUnderlineMediumPragmatic',
|
2015
|
-
from: 'tuiIconUnderlineLarge',
|
2016
|
-
},
|
2017
|
-
{
|
2018
|
-
to: 'tuiIconTdsArrowRewindSmallPragmatic',
|
2019
|
-
from: 'tuiIconUndo',
|
2020
|
-
},
|
2021
|
-
{
|
2022
|
-
to: 'tuiIconTdsWysiwygFontBoldMediumPragmatic',
|
2023
|
-
from: 'tuiIconBoldLarge',
|
2024
|
-
},
|
2025
|
-
{
|
2026
|
-
to: 'tuiIconTdsArrowRewindMediumPragmatic',
|
2027
|
-
from: 'tuiIconUndoLarge',
|
2028
|
-
},
|
2029
|
-
{
|
2030
|
-
to: 'tuiIconTdsMathNonEqualSmallPragmatic',
|
2031
|
-
from: 'tuiIconUnequal',
|
2032
|
-
},
|
2033
|
-
{
|
2034
|
-
to: 'tuiIconTdsMathNonEqualMediumPragmatic',
|
2035
|
-
from: 'tuiIconUnequalLarge',
|
2036
|
-
},
|
2037
|
-
{
|
2038
|
-
to: 'tuiIconTdsSnowflakeOffSmallPragmatic',
|
2039
|
-
from: 'tuiIconUnfreeze',
|
2040
|
-
},
|
2041
|
-
{
|
2042
|
-
to: 'tuiIconTdsSnowflakeOffMediumPragmatic',
|
2043
|
-
from: 'tuiIconUnfreezeLarge',
|
2044
|
-
},
|
2045
|
-
{
|
2046
|
-
to: 'tuiIconTdsLockOpenSmallPragmatic',
|
2047
|
-
from: 'tuiIconLockOpen',
|
2048
|
-
},
|
2049
|
-
{
|
2050
|
-
to: 'tuiIconTdsLockOpenSmallPragmatic',
|
2051
|
-
from: 'tuiIconUnlock',
|
2052
|
-
},
|
2053
|
-
{
|
2054
|
-
to: 'tuiIconTdsLockOpenMediumPragmatic',
|
2055
|
-
from: 'tuiIconUnlockLarge',
|
2056
|
-
},
|
2057
|
-
{
|
2058
|
-
to: 'tuiIconTdsLockOpenMediumPragmatic',
|
2059
|
-
from: 'tuiIconUnlockLargeOutline',
|
2060
|
-
},
|
2061
|
-
{
|
2062
|
-
to: 'tuiIconTdsLockOpenMediumPragmatic',
|
2063
|
-
from: 'tuiIconUnlockOutline',
|
2064
|
-
},
|
2065
|
-
{
|
2066
|
-
to: 'tuiIconTdsArrowUpCircleSmallPragmatic',
|
2067
|
-
from: 'tuiIconUpCircle',
|
2068
|
-
},
|
2069
|
-
{
|
2070
|
-
to: 'tuiIconTdsShareSmallPragmatic',
|
2071
|
-
from: 'tuiIconUpload',
|
2072
|
-
},
|
2073
|
-
{
|
2074
|
-
to: 'tuiIconTdsShare2MediumPragmatic',
|
2075
|
-
from: 'tuiIconUploadLarge',
|
2076
|
-
},
|
2077
|
-
{
|
2078
|
-
to: 'tuiIconTdsUserImpersonalSmallPragmatic',
|
2079
|
-
from: 'tuiIconUser',
|
2080
|
-
},
|
2081
|
-
{
|
2082
|
-
to: 'tuiIconTdsUserImpersonalSmallPragmatic',
|
2083
|
-
from: 'tuiIconUserOutline',
|
2084
|
-
},
|
2085
|
-
{
|
2086
|
-
to: 'tuiIconTdsUserImpersonalMediumPragmatic',
|
2087
|
-
from: 'tuiIconUserpicCircleLarge',
|
2088
|
-
},
|
2089
|
-
{
|
2090
|
-
to: 'tuiIconTdsCameraVideoSmallPragmatic',
|
2091
|
-
from: 'tuiIconVideo',
|
2092
|
-
},
|
2093
|
-
{
|
2094
|
-
to: 'tuiIconTdsCameraVideoMediumPragmatic',
|
2095
|
-
from: 'tuiIconVideoLarge',
|
2096
|
-
},
|
2097
|
-
{
|
2098
|
-
to: 'tuiIconTdsCameraVideoSmallPragmatic',
|
2099
|
-
from: 'tuiIconVideoOutline',
|
2100
|
-
},
|
2101
|
-
{
|
2102
|
-
to: 'tuiIconTdsSoundSmallPragmatic',
|
2103
|
-
from: 'tuiIconSound',
|
2104
|
-
},
|
2105
|
-
{
|
2106
|
-
to: 'tuiIconTdsSoundSmallPragmatic',
|
2107
|
-
from: 'tuiIconVolume',
|
2108
|
-
},
|
2109
|
-
{
|
2110
|
-
to: 'tuiIconTdsSoundMediumPragmatic',
|
2111
|
-
from: 'tuiIconVolumeLarge',
|
2112
|
-
},
|
2113
|
-
{
|
2114
|
-
to: 'tuiIconTdsSoundMediumPragmatic',
|
2115
|
-
from: 'tuiIconVolumeLargeOutline',
|
2116
|
-
},
|
2117
|
-
{
|
2118
|
-
to: 'tuiIconTdsSoundSmallPragmatic',
|
2119
|
-
from: 'tuiIconVolumeOutline',
|
2120
|
-
},
|
2121
|
-
{
|
2122
|
-
to: 'tuiIconTdsSoundOffSmallPragmatic',
|
2123
|
-
from: 'tuiIconSoundOff',
|
2124
|
-
},
|
2125
|
-
{
|
2126
|
-
to: 'tuiIconTdsSoundOffSmallPragmatic',
|
2127
|
-
from: 'tuiIconVolumeX',
|
2128
|
-
},
|
2129
|
-
{
|
2130
|
-
to: 'tuiIconTdsSoundOffMediumPragmatic',
|
2131
|
-
from: 'tuiIconVolumeXLarge',
|
2132
|
-
},
|
2133
|
-
{
|
2134
|
-
to: 'tuiIconTdsSoundOffMediumPragmatic',
|
2135
|
-
from: 'tuiIconVolumeXLargeOutline',
|
2136
|
-
},
|
2137
|
-
{
|
2138
|
-
to: 'tuiIconTdsSoundOffSmallPragmatic',
|
2139
|
-
from: 'tuiIconVolumeXOutline',
|
2140
|
-
},
|
2141
|
-
{
|
2142
|
-
to: 'tuiIconTdsWalletSmallPragmatic',
|
2143
|
-
from: 'tuiIconWallet',
|
2144
|
-
},
|
2145
|
-
{
|
2146
|
-
to: 'tuiIconTdsWalletMediumPragmatic',
|
2147
|
-
from: 'tuiIconWalletLarge',
|
2148
|
-
},
|
2149
|
-
{
|
2150
|
-
to: 'tuiIconTdsExclamationSmallPragmatic',
|
2151
|
-
from: 'tuiIconWarning',
|
2152
|
-
},
|
2153
|
-
{
|
2154
|
-
to: 'tuiIconTdsExclamationMediumPragmatic',
|
2155
|
-
from: 'tuiIconWarningLarge',
|
2156
|
-
},
|
2157
|
-
{
|
2158
|
-
to: 'tuiIconTdsPaypassSmallPragmatic',
|
2159
|
-
from: 'tuiIconWireless',
|
2160
|
-
},
|
2161
|
-
{
|
2162
|
-
to: 'tuiIconTdsGlobeMediumPragmatic',
|
2163
|
-
from: 'tuiIconWorldLarge',
|
2164
|
-
},
|
2165
|
-
{
|
2166
|
-
to: 'tuiIconTdsCrossSmallPragmatic',
|
2167
|
-
from: 'tuiIconRemove',
|
2168
|
-
},
|
2169
|
-
{
|
2170
|
-
to: 'tuiIconTdsCrossSmallPragmatic',
|
2171
|
-
from: 'tuiIconCancelOutline',
|
2172
|
-
},
|
2173
|
-
{
|
2174
|
-
to: 'tuiIconTdsCrossSmallPragmatic',
|
2175
|
-
from: 'tuiIconX',
|
2176
|
-
},
|
2177
|
-
{
|
2178
|
-
to: 'tuiIconTdsCrossCircleSmallPragmatic',
|
2179
|
-
from: 'tuiIconCancel',
|
2180
|
-
},
|
2181
|
-
{
|
2182
|
-
to: 'tuiIconTdsCrossCircleSmallPragmatic',
|
2183
|
-
from: 'tuiIconXCircle',
|
2184
|
-
},
|
2185
|
-
{
|
2186
|
-
to: 'tuiIconTdsCrossCircleMediumPragmatic',
|
2187
|
-
from: 'tuiIconXCircleLarge',
|
2188
|
-
},
|
2189
|
-
{
|
2190
|
-
to: 'tuiIconTdsCrossCircleMediumPragmatic',
|
2191
|
-
from: 'tuiIconXCircleLargeOutline',
|
2192
|
-
},
|
2193
|
-
{
|
2194
|
-
to: 'tuiIconTdsCrossCircleSmallPragmatic',
|
2195
|
-
from: 'tuiIconXCircleOutline',
|
2196
|
-
},
|
2197
|
-
{
|
2198
|
-
to: 'tuiIconTdsCrossMediumPragmatic',
|
2199
|
-
from: 'tuiIconXLarge',
|
2200
|
-
},
|
2201
|
-
{
|
2202
|
-
to: 'tuiIconTdsLoupePlusSmallPragmatic',
|
2203
|
-
from: 'tuiIconZoomIn',
|
2204
|
-
},
|
2205
|
-
{
|
2206
|
-
to: 'tuiIconTdsLoupePlusMediumPragmatic',
|
2207
|
-
from: 'tuiIconZoomInLarge',
|
2208
|
-
},
|
2209
|
-
{
|
2210
|
-
to: 'tuiIconTdsLoupePlusMediumPragmatic',
|
2211
|
-
from: 'tuiIconZoomInLargeOutline',
|
2212
|
-
},
|
2213
|
-
{
|
2214
|
-
to: 'tuiIconTdsLoupePlusSmallPragmatic',
|
2215
|
-
from: 'tuiIconZoomInOutline',
|
2216
|
-
},
|
2217
|
-
{
|
2218
|
-
to: 'tuiIconTdsLoupeMinusSmallPragmatic',
|
2219
|
-
from: 'tuiIconZoomOut',
|
2220
|
-
},
|
2221
|
-
{
|
2222
|
-
to: 'tuiIconTdsLoupeMinusMediumPragmatic',
|
2223
|
-
from: 'tuiIconZoomOutLarge',
|
2224
|
-
},
|
2225
|
-
{
|
2226
|
-
to: 'tuiIconTdsLoupeMinusMediumPragmatic',
|
2227
|
-
from: 'tuiIconZoomOutLargeOutline',
|
2228
|
-
},
|
2229
|
-
{
|
2230
|
-
to: 'tuiIconTdsLoupeMinusSmallPragmatic',
|
2231
|
-
from: 'tuiIconZoomOutOutline',
|
2232
|
-
},
|
2233
|
-
{
|
2234
|
-
to: 'tuiIconTdsAtmSmallPragmatic',
|
2235
|
-
from: 'tuiIconAtm',
|
2236
|
-
},
|
2237
|
-
{
|
2238
|
-
to: 'tuiIconTdsGiftSmallPragmatic',
|
2239
|
-
from: 'tuiIconBirthday',
|
2240
|
-
},
|
2241
|
-
{
|
2242
|
-
to: 'tuiIconTdsGiftMediumPragmatic',
|
2243
|
-
from: 'tuiIconBirthdayLarge',
|
2244
|
-
},
|
2245
|
-
{
|
2246
|
-
to: 'tuiIconTdsCrownSmallPragmatic',
|
2247
|
-
from: 'tuiIconBonus',
|
2248
|
-
},
|
2249
|
-
{
|
2250
|
-
to: 'tuiIconTdsCrownMediumPragmatic',
|
2251
|
-
from: 'tuiIconBonusLarge',
|
2252
|
-
},
|
2253
|
-
{
|
2254
|
-
to: 'tuiIconTdsBriefcaseMediumPragmatic',
|
2255
|
-
from: 'tuiIconBriefcaseLarge',
|
2256
|
-
},
|
2257
|
-
{
|
2258
|
-
to: 'tuiIconTdsChevronDownSmallPragmatic',
|
2259
|
-
from: 'tuiIconCardDrop',
|
2260
|
-
},
|
2261
|
-
{
|
2262
|
-
to: 'tuiIconTdsChevronDownMediumPragmatic',
|
2263
|
-
from: 'tuiIconCardDropLarge',
|
2264
|
-
},
|
2265
|
-
{
|
2266
|
-
to: 'tuiIconTdsChevronDownMediumPragmatic',
|
2267
|
-
from: 'tuiIconCardDropLargeOutline',
|
2268
|
-
},
|
2269
|
-
{
|
2270
|
-
to: 'tuiIconTdsChevronDownSmallPragmatic',
|
2271
|
-
from: 'tuiIconCardDropOutline',
|
2272
|
-
},
|
2273
|
-
{
|
2274
|
-
to: 'tuiIconTdsCardBacksideSmallPragmatic',
|
2275
|
-
from: 'tuiIconCardOutline',
|
2276
|
-
},
|
2277
|
-
{
|
2278
|
-
to: 'tuiIconTdsClipboardCheckSmallPragmatic',
|
2279
|
-
from: 'tuiIconChecklist',
|
2280
|
-
},
|
2281
|
-
{
|
2282
|
-
to: 'tuiIconTdsClipboardCheckMediumPragmatic',
|
2283
|
-
from: 'tuiIconChecklistLarge',
|
2284
|
-
},
|
2285
|
-
{
|
2286
|
-
to: 'tuiIconTdsClipboardCheckMediumPragmatic',
|
2287
|
-
from: 'tuiIconChecklistLargeOutline',
|
2288
|
-
},
|
2289
|
-
{
|
2290
|
-
to: 'tuiIconTdsClipboardCheckSmallPragmatic',
|
2291
|
-
from: 'tuiIconChecklistOutline',
|
2292
|
-
},
|
2293
|
-
{
|
2294
|
-
to: 'tuiIconTdsChevronDoubleDownSmallPragmatic',
|
2295
|
-
from: 'tuiIconChevronsDown',
|
2296
|
-
},
|
2297
|
-
{
|
2298
|
-
to: 'tuiIconTdsChevronDoubleLeftSmallPragmatic',
|
2299
|
-
from: 'tuiIconChevronsLeft',
|
2300
|
-
},
|
2301
|
-
{
|
2302
|
-
to: 'tuiIconTdsChevronDoubleRightSmallPragmatic',
|
2303
|
-
from: 'tuiIconChevronsRight',
|
2304
|
-
},
|
2305
|
-
{
|
2306
|
-
to: 'tuiIconTdsChevronDoubleUpMediumPragmatic',
|
2307
|
-
from: 'tuiIconChevronsUpLarge',
|
2308
|
-
},
|
2309
|
-
{
|
2310
|
-
to: 'tuiIconTdsPlusCircleSmallPragmatic',
|
2311
|
-
from: 'tuiIconCompensation',
|
2312
|
-
},
|
2313
|
-
{
|
2314
|
-
to: 'tuiIconTdsPlusCircleMediumPragmatic',
|
2315
|
-
from: 'tuiIconCompensationLarge',
|
2316
|
-
},
|
2317
|
-
{
|
2318
|
-
to: 'tuiIconTdsPlusCircleMediumPragmatic',
|
2319
|
-
from: 'tuiIconCompensationLargeOutline',
|
2320
|
-
},
|
2321
|
-
{
|
2322
|
-
to: 'tuiIconTdsCardBacksideSmallPragmatic',
|
2323
|
-
from: 'tuiIconCards',
|
2324
|
-
},
|
2325
|
-
{
|
2326
|
-
to: 'tuiIconTdsCardBacksideSmallPragmatic',
|
2327
|
-
from: 'tuiIconCard',
|
2328
|
-
},
|
2329
|
-
{
|
2330
|
-
to: 'tuiIconTdsCardBacksideSmallPragmatic',
|
2331
|
-
from: 'tuiIconCreditCard',
|
2332
|
-
},
|
2333
|
-
{
|
2334
|
-
to: 'tuiIconTdsCardsMediumPragmatic',
|
2335
|
-
from: 'tuiIconCreditCardLarge',
|
2336
|
-
},
|
2337
|
-
{
|
2338
|
-
to: 'tuiIconTdsCardsMediumPragmatic',
|
2339
|
-
from: 'tuiIconCreditCardLargeOutline',
|
2340
|
-
},
|
2341
|
-
{
|
2342
|
-
to: 'tuiIconTdsCardBacksideSmallPragmatic',
|
2343
|
-
from: 'tuiIconCreditCardOutline',
|
2344
|
-
},
|
2345
|
-
{
|
2346
|
-
to: 'tuiIconTdsLogoFacebookMedium',
|
2347
|
-
from: 'tuiIconFacebookLarge',
|
2348
|
-
},
|
2349
|
-
{
|
2350
|
-
to: 'tuiIconTdsArrowForwardSmallPragmatic',
|
2351
|
-
from: 'tuiIconForward',
|
2352
|
-
},
|
2353
|
-
{
|
2354
|
-
to: 'tuiIconTdsArrowForwardMediumPragmatic',
|
2355
|
-
from: 'tuiIconForwardLarge',
|
2356
|
-
},
|
2357
|
-
{
|
2358
|
-
to: 'tuiIconTdsArrowForwardMediumPragmatic',
|
2359
|
-
from: 'tuiIconForwardLargeOutline',
|
2360
|
-
},
|
2361
|
-
{
|
2362
|
-
to: 'tuiIconTdsLogoMastercardMedium',
|
2363
|
-
from: 'tuiIconMaestroMono',
|
2364
|
-
},
|
2365
|
-
{
|
2366
|
-
to: 'tuiIconMapPinOutline',
|
2367
|
-
from: 'tuiIconMap',
|
2368
|
-
},
|
2369
|
-
{
|
2370
|
-
to: 'tuiIconTdsPinGeoMediumPragmatic',
|
2371
|
-
from: 'tuiIconMapLarge',
|
2372
|
-
},
|
2373
|
-
{
|
2374
|
-
to: 'tuiIconTdsPaymentMastercardLogo',
|
2375
|
-
from: 'tuiIconMastercard',
|
2376
|
-
},
|
2377
|
-
{
|
2378
|
-
to: 'tuiIconTdsLogoMastercardMedium',
|
2379
|
-
from: 'tuiIconMastercardMono',
|
2380
|
-
},
|
2381
|
-
{
|
2382
|
-
to: 'tuiIconTdsPaymentMirLogo',
|
2383
|
-
from: 'tuiIconMir',
|
2384
|
-
},
|
2385
|
-
{
|
2386
|
-
to: 'tuiIconTdsPaymentMirMonochromeLogo',
|
2387
|
-
from: 'tuiIconMirMono',
|
2388
|
-
},
|
2389
|
-
{
|
2390
|
-
to: 'tuiIconTdsNightSmallPragmatic',
|
2391
|
-
from: 'tuiIconMoon',
|
2392
|
-
},
|
2393
|
-
{
|
2394
|
-
to: 'tuiIconTdsNightMediumPragmatic',
|
2395
|
-
from: 'tuiIconMoonLarge',
|
2396
|
-
},
|
2397
|
-
{
|
2398
|
-
to: 'tuiIconTdsLogoOdnoklassnikiMedium',
|
2399
|
-
from: 'tuiIconOkLarge',
|
2400
|
-
},
|
2401
|
-
{
|
2402
|
-
to: 'tuiIconTdsPhoneArrowSmallPragmatic',
|
2403
|
-
from: 'tuiIconCallIn',
|
2404
|
-
},
|
2405
|
-
{
|
2406
|
-
to: 'tuiIconTdsPhoneArrowSmallPragmatic',
|
2407
|
-
from: 'tuiIconPhoneIncoming',
|
2408
|
-
},
|
2409
|
-
{
|
2410
|
-
to: 'tuiIconTdsPhoneArrowMediumPragmatic',
|
2411
|
-
from: 'tuiIconPhoneIncomingLarge',
|
2412
|
-
},
|
2413
|
-
{
|
2414
|
-
to: 'tuiIconTdsArrowRewindMediumPragmatic',
|
2415
|
-
from: 'tuiIconRepeatCurrencyLarge',
|
2416
|
-
},
|
2417
|
-
{
|
2418
|
-
to: 'tuiIconTdsSaveSmallPragmatic',
|
2419
|
-
from: 'tuiIconSave',
|
2420
|
-
},
|
2421
|
-
{
|
2422
|
-
to: 'tuiIconTdsFloppyDiskMediumPragmatic',
|
2423
|
-
from: 'tuiIconSaveLarge',
|
2424
|
-
},
|
2425
|
-
{
|
2426
|
-
to: 'tuiIconTdsFloppyDiskMediumPragmatic',
|
2427
|
-
from: 'tuiIconSaveLargeOutline',
|
2428
|
-
},
|
2429
|
-
{
|
2430
|
-
to: 'tuiIconTdsSaveSmallPragmatic',
|
2431
|
-
from: 'tuiIconSaveOutline',
|
2432
|
-
},
|
2433
|
-
{
|
2434
|
-
to: 'tuiIconTdsDevicePhoneSmallPragmatic',
|
2435
|
-
from: 'tuiIconMobile',
|
2436
|
-
},
|
2437
|
-
{
|
2438
|
-
to: 'tuiIconTdsDevicePhoneSmallPragmatic',
|
2439
|
-
from: 'tuiIconSmartphone',
|
2440
|
-
},
|
2441
|
-
{
|
2442
|
-
to: 'tuiIconTdsDevicePhoneMediumPragmatic',
|
2443
|
-
from: 'tuiIconSmartphoneLarge',
|
2444
|
-
},
|
2445
|
-
{
|
2446
|
-
to: 'tuiIconTdsLogoTelegramMedium',
|
2447
|
-
from: 'tuiIconSocialTelegramLarge',
|
2448
|
-
},
|
2449
|
-
{
|
2450
|
-
to: 'tuiIconTdsLogoViberMedium',
|
2451
|
-
from: 'tuiIconSocialViberLarge',
|
2452
|
-
},
|
2453
|
-
{
|
2454
|
-
to: 'tuiIconTdsLogoWhatsappMedium',
|
2455
|
-
from: 'tuiIconSocialWhatsappLarge',
|
2456
|
-
},
|
2457
|
-
{
|
2458
|
-
to: 'tuiIconTdsSunSmallPragmatic',
|
2459
|
-
from: 'tuiIconSun',
|
2460
|
-
},
|
2461
|
-
{
|
2462
|
-
to: 'tuiIconTdsSunMediumPragmatic',
|
2463
|
-
from: 'tuiIconSunLarge',
|
2464
|
-
},
|
2465
|
-
{
|
2466
|
-
to: 'tuiIconTdsLogoTiktokMedium',
|
2467
|
-
from: 'tuiIconTiktokLarge',
|
2468
|
-
},
|
2469
|
-
{
|
2470
|
-
to: 'tuiIconTdsChevronDoubleRightCircleSmallPragmatic',
|
2471
|
-
from: 'tuiIconTransfer',
|
2472
|
-
},
|
2473
|
-
{
|
2474
|
-
to: 'tuiIconTdsChevronDoubleRightCircleMediumPragmatic',
|
2475
|
-
from: 'tuiIconTransferLarge',
|
2476
|
-
},
|
2477
|
-
{
|
2478
|
-
to: 'tuiIconTdsChevronDoubleRightCircleMediumPragmatic',
|
2479
|
-
from: 'tuiIconTransferLargeOutline',
|
2480
|
-
},
|
2481
|
-
{
|
2482
|
-
to: 'tuiIconTdsChevronDoubleRightCircleSmallPragmatic',
|
2483
|
-
from: 'tuiIconTransferOutline',
|
2484
|
-
},
|
2485
|
-
{
|
2486
|
-
to: 'tuiIconTdsChevronDoubleRightCircleMediumPragmatic',
|
2487
|
-
from: 'tuiIconTransferTcrmLarge',
|
2488
|
-
},
|
2489
|
-
{
|
2490
|
-
to: 'tuiIconTdsChevronDoubleRightCircleMediumPragmatic',
|
2491
|
-
from: 'tuiIconTransferTcrmLargeOutline',
|
2492
|
-
},
|
2493
|
-
{
|
2494
|
-
to: 'tuiIconTdsLogoTwitterMedium',
|
2495
|
-
from: 'tuiIconTwitterLarge',
|
2496
|
-
},
|
2497
|
-
{
|
2498
|
-
to: 'tuiIconTdsPaymentUnionpayLogo',
|
2499
|
-
from: 'tuiIconUnionPay',
|
2500
|
-
},
|
2501
|
-
{
|
2502
|
-
to: 'tuiIconTdsUsersSmallPragmatic',
|
2503
|
-
from: 'tuiIconUsers',
|
2504
|
-
},
|
2505
|
-
{
|
2506
|
-
to: 'tuiIconTdsUsersSmallPragmatic',
|
2507
|
-
from: 'tuiIconUsersOutline',
|
2508
|
-
},
|
2509
|
-
{
|
2510
|
-
to: 'tuiIconTdsPaymentVisaLogo',
|
2511
|
-
from: 'tuiIconVisa',
|
2512
|
-
},
|
2513
|
-
{
|
2514
|
-
to: 'tuiIconTdsPaymentVisaMonochromeLogoSquare',
|
2515
|
-
from: 'tuiIconVisaMono',
|
2516
|
-
},
|
2517
|
-
{
|
2518
|
-
to: 'tuiIconTdsLogoVkMedium',
|
2519
|
-
from: 'tuiIconVkLarge',
|
2520
|
-
},
|
2521
|
-
{
|
2522
|
-
to: 'tuiIconTdsWifiMediumPragmatic',
|
2523
|
-
from: 'tuiIconWifiLarge',
|
2524
|
-
},
|
2525
|
-
{
|
2526
|
-
to: 'tuiIconTdsWifiOffMediumPragmatic',
|
2527
|
-
from: 'tuiIconWifiOffLarge',
|
2528
|
-
},
|
2529
|
-
{
|
2530
|
-
to: 'tuiIconTdsLogoYoutubeMedium',
|
2531
|
-
from: 'tuiIconYoutubeLarge',
|
2532
|
-
},
|
2533
|
-
{
|
2534
|
-
to: 'tuiIconTdsAnchorMediumPragmatic',
|
2535
|
-
from: 'tuiIconAnchorLarge',
|
2536
|
-
},
|
2537
|
-
].sort((prev, next) => next.from.length - prev.from.length);
|