@westpac/ui 0.26.0 → 0.28.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/CHANGELOG.md +15 -0
- package/assets/icons/filled/arrow-back-circle-filled.svg +1 -0
- package/assets/icons/filled/arrow-down-circle-filled.svg +1 -0
- package/assets/icons/filled/arrow-forward-circle-filled.svg +1 -0
- package/assets/icons/filled/arrow-up-circle-filled.svg +1 -0
- package/assets/icons/outlined/arrow-back-circle-outlined.svg +1 -0
- package/assets/icons/outlined/arrow-down-circle-outlined.svg +1 -0
- package/assets/icons/outlined/arrow-forward-circle-outlined.svg +1 -0
- package/assets/icons/outlined/arrow-up-circle-outlined.svg +1 -0
- package/dist/component-type.json +1 -1
- package/dist/components/alert/alert.styles.js +1 -1
- package/dist/components/autocomplete/autocomplete.component.js +2 -13
- package/dist/components/badge/badge.styles.d.ts +2 -2
- package/dist/components/badge/badge.styles.js +2 -2
- package/dist/components/button/button.component.d.ts +2 -2
- package/dist/components/button/button.styles.js +23 -7
- package/dist/components/button/button.utils.js +2 -2
- package/dist/components/button-group/components/button-group-button/button-group-button.component.js +6 -2
- package/dist/components/button-group/components/button-group-button/button-group-button.styles.d.ts +24 -0
- package/dist/components/button-group/components/button-group-button/button-group-button.styles.js +9 -1
- package/dist/components/error-message/error-message.styles.js +1 -1
- package/dist/components/filter/components/filter-buttons/filter-buttons.component.js +24 -9
- package/dist/components/filter/components/filter-buttons/filter-buttons.styles.js +1 -1
- package/dist/components/header/header.component.js +1 -1
- package/dist/components/header/header.styles.js +1 -1
- package/dist/components/icon/components/arrow-back-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-back-circle-icon.js +35 -0
- package/dist/components/icon/components/arrow-down-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-down-circle-icon.js +35 -0
- package/dist/components/icon/components/arrow-forward-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-forward-circle-icon.js +35 -0
- package/dist/components/icon/components/arrow-up-circle-icon.d.ts +2 -0
- package/dist/components/icon/components/arrow-up-circle-icon.js +35 -0
- package/dist/components/icon/components/cancel-card-icon.js +8 -18
- package/dist/components/icon/components/child-care-icon.js +6 -6
- package/dist/components/icon/components/child-icon.js +2 -2
- package/dist/components/icon/components/circle-icon.js +9 -19
- package/dist/components/icon/components/drop-left-icon.js +1 -1
- package/dist/components/icon/components/drop-right-icon.js +1 -1
- package/dist/components/icon/components/piggy-bank.js +4 -4
- package/dist/components/icon/components/quick-balance-icon.js +7 -17
- package/dist/components/icon/components/target-icon.d.ts +1 -1
- package/dist/components/icon/components/target-icon.js +3 -9
- package/dist/components/icon/components/x-icon.js +6 -6
- package/dist/components/icon/index.d.ts +5 -1
- package/dist/components/icon/index.js +5 -1
- package/dist/components/input/input.component.d.ts +2 -2
- package/dist/components/pictogram/components/informative/sparkle-pictogram.js +15 -15
- package/dist/components/progress-indicator/progress-indicator.component.d.ts +2 -2
- package/dist/components/progress-indicator/progress-indicator.component.js +72 -11
- package/dist/components/progress-indicator/progress-indicator.styles.d.ts +246 -27
- package/dist/components/progress-indicator/progress-indicator.styles.js +82 -9
- package/dist/components/progress-indicator/progress-indicator.types.d.ts +13 -11
- package/dist/components/select/select.component.d.ts +2 -2
- package/dist/components/symbol/components/logos/bt-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-logo.js +35 -0
- package/dist/components/symbol/components/logos/bt-multibrand-large-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-multibrand-large-logo.js +41 -0
- package/dist/components/symbol/components/logos/bt-multibrand-small-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-multibrand-small-logo.js +50 -0
- package/dist/components/symbol/components/logos/bt-panorama-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-logo.js +69 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-large-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-large-logo.js +76 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-small-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-multibrand-small-logo.js +76 -0
- package/dist/components/symbol/components/logos/bt-panorama-reversed-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-panorama-reversed-logo.js +69 -0
- package/dist/components/symbol/components/logos/bt-reversed-logo.d.ts +2 -0
- package/dist/components/symbol/components/logos/bt-reversed-logo.js +35 -0
- package/dist/components/symbol/index.d.ts +8 -0
- package/dist/components/symbol/index.js +8 -0
- package/dist/components/textarea/textarea.component.d.ts +2 -2
- package/dist/css/westpac-ui.css +68 -150
- package/dist/css/westpac-ui.min.css +68 -150
- package/dist/tailwind/themes/btpl.d.ts +2 -0
- package/dist/tailwind/themes/btpl.js +30 -0
- package/package.json +4 -4
- package/src/components/alert/alert.styles.ts +1 -1
- package/src/components/autocomplete/autocomplete.component.tsx +2 -12
- package/src/components/badge/badge.styles.ts +2 -2
- package/src/components/button/button.styles.ts +27 -7
- package/src/components/button/button.utils.ts +2 -2
- package/src/components/button-group/components/button-group-button/button-group-button.component.tsx +3 -2
- package/src/components/button-group/components/button-group-button/button-group-button.styles.ts +9 -1
- package/src/components/error-message/error-message.styles.ts +1 -1
- package/src/components/filter/components/filter-buttons/filter-buttons.component.tsx +55 -51
- package/src/components/filter/components/filter-buttons/filter-buttons.styles.ts +1 -1
- package/src/components/header/header.component.tsx +1 -1
- package/src/components/header/header.styles.ts +1 -1
- package/src/components/icon/components/arrow-back-circle-icon.tsx +37 -0
- package/src/components/icon/components/arrow-down-circle-icon.tsx +37 -0
- package/src/components/icon/components/arrow-forward-circle-icon.tsx +37 -0
- package/src/components/icon/components/arrow-up-circle-icon.tsx +37 -0
- package/src/components/icon/components/cancel-card-icon.tsx +15 -19
- package/src/components/icon/components/child-care-icon.tsx +6 -6
- package/src/components/icon/components/child-icon.tsx +2 -2
- package/src/components/icon/components/circle-icon.tsx +14 -22
- package/src/components/icon/components/drop-left-icon.tsx +1 -1
- package/src/components/icon/components/drop-right-icon.tsx +1 -1
- package/src/components/icon/components/piggy-bank.tsx +4 -4
- package/src/components/icon/components/quick-balance-icon.tsx +15 -19
- package/src/components/icon/components/target-icon.tsx +13 -20
- package/src/components/icon/components/x-icon.tsx +6 -6
- package/src/components/icon/index.ts +5 -1
- package/src/components/pictogram/components/informative/sparkle-pictogram.tsx +15 -15
- package/src/components/progress-indicator/progress-indicator.component.tsx +56 -8
- package/src/components/progress-indicator/progress-indicator.styles.ts +32 -9
- package/src/components/progress-indicator/progress-indicator.types.ts +13 -11
- package/src/components/symbol/components/logos/bt-logo.tsx +35 -0
- package/src/components/symbol/components/logos/bt-multibrand-large-logo.tsx +42 -0
- package/src/components/symbol/components/logos/bt-multibrand-small-logo.tsx +49 -0
- package/src/components/symbol/components/logos/bt-panorama-logo.tsx +76 -0
- package/src/components/symbol/components/logos/bt-panorama-multibrand-large-logo.tsx +80 -0
- package/src/components/symbol/components/logos/bt-panorama-multibrand-small-logo.tsx +80 -0
- package/src/components/symbol/components/logos/bt-panorama-reversed-logo.tsx +76 -0
- package/src/components/symbol/components/logos/bt-reversed-logo.tsx +35 -0
- package/src/components/symbol/index.ts +8 -0
- package/src/tailwind/themes/btpl.ts +32 -0
|
@@ -1,41 +1,260 @@
|
|
|
1
1
|
export declare const styles: import("tailwind-variants").TVReturnType<{
|
|
2
2
|
size: {
|
|
3
|
-
xsmall:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
xsmall: {
|
|
4
|
+
base: string;
|
|
5
|
+
};
|
|
6
|
+
small: {
|
|
7
|
+
base: string;
|
|
8
|
+
};
|
|
9
|
+
medium: {
|
|
10
|
+
base: string;
|
|
11
|
+
};
|
|
12
|
+
large: {
|
|
13
|
+
base: string;
|
|
14
|
+
};
|
|
15
|
+
xlarge: {
|
|
16
|
+
base: string;
|
|
17
|
+
};
|
|
8
18
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
19
|
+
color: {
|
|
20
|
+
success: {
|
|
21
|
+
label: string;
|
|
22
|
+
};
|
|
23
|
+
info: {
|
|
24
|
+
label: string;
|
|
25
|
+
};
|
|
26
|
+
warning: {
|
|
27
|
+
label: string;
|
|
28
|
+
};
|
|
29
|
+
danger: {
|
|
30
|
+
label: string;
|
|
31
|
+
};
|
|
32
|
+
system: {
|
|
33
|
+
label: string;
|
|
34
|
+
};
|
|
35
|
+
white: {
|
|
36
|
+
label: string;
|
|
37
|
+
};
|
|
38
|
+
black: {
|
|
39
|
+
label: string;
|
|
40
|
+
};
|
|
41
|
+
background: {
|
|
42
|
+
label: string;
|
|
43
|
+
};
|
|
44
|
+
border: {
|
|
45
|
+
label: string;
|
|
46
|
+
};
|
|
47
|
+
borderDark: {
|
|
48
|
+
label: string;
|
|
49
|
+
};
|
|
50
|
+
focus: {
|
|
51
|
+
label: string;
|
|
52
|
+
};
|
|
53
|
+
heading: {
|
|
54
|
+
label: string;
|
|
55
|
+
};
|
|
56
|
+
hero: {
|
|
57
|
+
label: string;
|
|
58
|
+
};
|
|
59
|
+
light: {
|
|
60
|
+
label: string;
|
|
61
|
+
};
|
|
62
|
+
link: {
|
|
63
|
+
label: string;
|
|
64
|
+
};
|
|
65
|
+
muted: {
|
|
66
|
+
label: string;
|
|
67
|
+
};
|
|
68
|
+
neutral: {
|
|
69
|
+
label: string;
|
|
70
|
+
};
|
|
71
|
+
pop: {
|
|
72
|
+
label: string;
|
|
73
|
+
};
|
|
74
|
+
primary: {
|
|
75
|
+
label: string;
|
|
76
|
+
};
|
|
77
|
+
text: {
|
|
78
|
+
label: string;
|
|
79
|
+
};
|
|
12
80
|
};
|
|
13
|
-
},
|
|
81
|
+
}, {
|
|
82
|
+
icon: string;
|
|
83
|
+
base: string;
|
|
84
|
+
container: string;
|
|
85
|
+
label: string;
|
|
86
|
+
}, undefined, {
|
|
14
87
|
responsiveVariants: string[];
|
|
15
88
|
}, {
|
|
16
89
|
size: {
|
|
17
|
-
xsmall:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
90
|
+
xsmall: {
|
|
91
|
+
base: string;
|
|
92
|
+
};
|
|
93
|
+
small: {
|
|
94
|
+
base: string;
|
|
95
|
+
};
|
|
96
|
+
medium: {
|
|
97
|
+
base: string;
|
|
98
|
+
};
|
|
99
|
+
large: {
|
|
100
|
+
base: string;
|
|
101
|
+
};
|
|
102
|
+
xlarge: {
|
|
103
|
+
base: string;
|
|
104
|
+
};
|
|
22
105
|
};
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
106
|
+
color: {
|
|
107
|
+
success: {
|
|
108
|
+
label: string;
|
|
109
|
+
};
|
|
110
|
+
info: {
|
|
111
|
+
label: string;
|
|
112
|
+
};
|
|
113
|
+
warning: {
|
|
114
|
+
label: string;
|
|
115
|
+
};
|
|
116
|
+
danger: {
|
|
117
|
+
label: string;
|
|
118
|
+
};
|
|
119
|
+
system: {
|
|
120
|
+
label: string;
|
|
121
|
+
};
|
|
122
|
+
white: {
|
|
123
|
+
label: string;
|
|
124
|
+
};
|
|
125
|
+
black: {
|
|
126
|
+
label: string;
|
|
127
|
+
};
|
|
128
|
+
background: {
|
|
129
|
+
label: string;
|
|
130
|
+
};
|
|
131
|
+
border: {
|
|
132
|
+
label: string;
|
|
133
|
+
};
|
|
134
|
+
borderDark: {
|
|
135
|
+
label: string;
|
|
136
|
+
};
|
|
137
|
+
focus: {
|
|
138
|
+
label: string;
|
|
139
|
+
};
|
|
140
|
+
heading: {
|
|
141
|
+
label: string;
|
|
142
|
+
};
|
|
143
|
+
hero: {
|
|
144
|
+
label: string;
|
|
145
|
+
};
|
|
146
|
+
light: {
|
|
147
|
+
label: string;
|
|
148
|
+
};
|
|
149
|
+
link: {
|
|
150
|
+
label: string;
|
|
151
|
+
};
|
|
152
|
+
muted: {
|
|
153
|
+
label: string;
|
|
154
|
+
};
|
|
155
|
+
neutral: {
|
|
156
|
+
label: string;
|
|
157
|
+
};
|
|
158
|
+
pop: {
|
|
159
|
+
label: string;
|
|
160
|
+
};
|
|
161
|
+
primary: {
|
|
162
|
+
label: string;
|
|
163
|
+
};
|
|
164
|
+
text: {
|
|
165
|
+
label: string;
|
|
166
|
+
};
|
|
26
167
|
};
|
|
27
|
-
},
|
|
168
|
+
}, {
|
|
169
|
+
icon: string;
|
|
170
|
+
base: string;
|
|
171
|
+
container: string;
|
|
172
|
+
label: string;
|
|
173
|
+
}, import("tailwind-variants").TVReturnType<{
|
|
28
174
|
size: {
|
|
29
|
-
xsmall:
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
175
|
+
xsmall: {
|
|
176
|
+
base: string;
|
|
177
|
+
};
|
|
178
|
+
small: {
|
|
179
|
+
base: string;
|
|
180
|
+
};
|
|
181
|
+
medium: {
|
|
182
|
+
base: string;
|
|
183
|
+
};
|
|
184
|
+
large: {
|
|
185
|
+
base: string;
|
|
186
|
+
};
|
|
187
|
+
xlarge: {
|
|
188
|
+
base: string;
|
|
189
|
+
};
|
|
34
190
|
};
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
191
|
+
color: {
|
|
192
|
+
success: {
|
|
193
|
+
label: string;
|
|
194
|
+
};
|
|
195
|
+
info: {
|
|
196
|
+
label: string;
|
|
197
|
+
};
|
|
198
|
+
warning: {
|
|
199
|
+
label: string;
|
|
200
|
+
};
|
|
201
|
+
danger: {
|
|
202
|
+
label: string;
|
|
203
|
+
};
|
|
204
|
+
system: {
|
|
205
|
+
label: string;
|
|
206
|
+
};
|
|
207
|
+
white: {
|
|
208
|
+
label: string;
|
|
209
|
+
};
|
|
210
|
+
black: {
|
|
211
|
+
label: string;
|
|
212
|
+
};
|
|
213
|
+
background: {
|
|
214
|
+
label: string;
|
|
215
|
+
};
|
|
216
|
+
border: {
|
|
217
|
+
label: string;
|
|
218
|
+
};
|
|
219
|
+
borderDark: {
|
|
220
|
+
label: string;
|
|
221
|
+
};
|
|
222
|
+
focus: {
|
|
223
|
+
label: string;
|
|
224
|
+
};
|
|
225
|
+
heading: {
|
|
226
|
+
label: string;
|
|
227
|
+
};
|
|
228
|
+
hero: {
|
|
229
|
+
label: string;
|
|
230
|
+
};
|
|
231
|
+
light: {
|
|
232
|
+
label: string;
|
|
233
|
+
};
|
|
234
|
+
link: {
|
|
235
|
+
label: string;
|
|
236
|
+
};
|
|
237
|
+
muted: {
|
|
238
|
+
label: string;
|
|
239
|
+
};
|
|
240
|
+
neutral: {
|
|
241
|
+
label: string;
|
|
242
|
+
};
|
|
243
|
+
pop: {
|
|
244
|
+
label: string;
|
|
245
|
+
};
|
|
246
|
+
primary: {
|
|
247
|
+
label: string;
|
|
248
|
+
};
|
|
249
|
+
text: {
|
|
250
|
+
label: string;
|
|
251
|
+
};
|
|
38
252
|
};
|
|
39
|
-
},
|
|
253
|
+
}, {
|
|
254
|
+
icon: string;
|
|
255
|
+
base: string;
|
|
256
|
+
container: string;
|
|
257
|
+
label: string;
|
|
258
|
+
}, undefined, {
|
|
40
259
|
responsiveVariants: string[];
|
|
41
260
|
}, unknown, unknown, undefined>>;
|
|
@@ -1,17 +1,90 @@
|
|
|
1
1
|
import { tv } from 'tailwind-variants';
|
|
2
2
|
export const styles = tv({
|
|
3
|
-
|
|
3
|
+
slots: {
|
|
4
|
+
icon: 'absolute inset-0 m-auto',
|
|
5
|
+
base: 'animate-[spin_0.7s_linear_infinite]',
|
|
6
|
+
container: 'flex flex-col items-center',
|
|
7
|
+
label: 'typography-body-9 mt-1.5'
|
|
8
|
+
},
|
|
4
9
|
variants: {
|
|
5
10
|
size: {
|
|
6
|
-
xsmall:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
xsmall: {
|
|
12
|
+
base: 'h-2 w-2'
|
|
13
|
+
},
|
|
14
|
+
small: {
|
|
15
|
+
base: 'h-3 w-3'
|
|
16
|
+
},
|
|
17
|
+
medium: {
|
|
18
|
+
base: 'h-4 w-4'
|
|
19
|
+
},
|
|
20
|
+
large: {
|
|
21
|
+
base: 'h-15 w-15'
|
|
22
|
+
},
|
|
23
|
+
xlarge: {
|
|
24
|
+
base: 'h-15 w-15'
|
|
25
|
+
}
|
|
11
26
|
},
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
27
|
+
color: {
|
|
28
|
+
success: {
|
|
29
|
+
label: 'text-success'
|
|
30
|
+
},
|
|
31
|
+
info: {
|
|
32
|
+
label: 'text-info'
|
|
33
|
+
},
|
|
34
|
+
warning: {
|
|
35
|
+
label: 'text-warning'
|
|
36
|
+
},
|
|
37
|
+
danger: {
|
|
38
|
+
label: 'text-danger'
|
|
39
|
+
},
|
|
40
|
+
system: {
|
|
41
|
+
label: 'text-system'
|
|
42
|
+
},
|
|
43
|
+
white: {
|
|
44
|
+
label: 'text-white'
|
|
45
|
+
},
|
|
46
|
+
black: {
|
|
47
|
+
label: 'text-black'
|
|
48
|
+
},
|
|
49
|
+
background: {
|
|
50
|
+
label: 'text-background'
|
|
51
|
+
},
|
|
52
|
+
border: {
|
|
53
|
+
label: 'text-border'
|
|
54
|
+
},
|
|
55
|
+
borderDark: {
|
|
56
|
+
label: 'text-borderDark'
|
|
57
|
+
},
|
|
58
|
+
focus: {
|
|
59
|
+
label: 'text-focus'
|
|
60
|
+
},
|
|
61
|
+
heading: {
|
|
62
|
+
label: 'text-heading'
|
|
63
|
+
},
|
|
64
|
+
hero: {
|
|
65
|
+
label: 'text-hero'
|
|
66
|
+
},
|
|
67
|
+
light: {
|
|
68
|
+
label: 'text-light'
|
|
69
|
+
},
|
|
70
|
+
link: {
|
|
71
|
+
label: 'text-link'
|
|
72
|
+
},
|
|
73
|
+
muted: {
|
|
74
|
+
label: 'text-muted'
|
|
75
|
+
},
|
|
76
|
+
neutral: {
|
|
77
|
+
label: 'text-neutral'
|
|
78
|
+
},
|
|
79
|
+
pop: {
|
|
80
|
+
label: 'text-pop'
|
|
81
|
+
},
|
|
82
|
+
primary: {
|
|
83
|
+
label: 'text-primary'
|
|
84
|
+
},
|
|
85
|
+
text: {
|
|
86
|
+
label: 'text-text'
|
|
87
|
+
}
|
|
15
88
|
}
|
|
16
89
|
}
|
|
17
90
|
}, {
|
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
type Variants = VariantProps<typeof styles>;
|
|
5
|
-
export type ProgressIndicatorProps = {
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { IconProps } from '../icon/icon.types.js';
|
|
3
|
+
export type ProgressIndicatorProps = Omit<IconProps, 'copyrightYear' | 'look'> & {
|
|
6
4
|
/**
|
|
7
|
-
*
|
|
5
|
+
* children prop
|
|
6
|
+
* @default false
|
|
8
7
|
*/
|
|
9
|
-
|
|
8
|
+
children?: ReactNode;
|
|
10
9
|
/**
|
|
11
|
-
*
|
|
10
|
+
* Icon embedded in progress indicator
|
|
12
11
|
*/
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
icon?: (props: IconProps) => JSX.Element;
|
|
13
|
+
/**
|
|
14
|
+
* Label placed below progress indicator
|
|
15
|
+
*/
|
|
16
|
+
label?: string;
|
|
17
|
+
};
|
|
@@ -3,8 +3,8 @@ export declare const Select: React.ForwardRefExoticComponent<{
|
|
|
3
3
|
invalid?: boolean | {
|
|
4
4
|
[x: string]: boolean | undefined;
|
|
5
5
|
} | undefined;
|
|
6
|
-
size?: "small" | "
|
|
7
|
-
[x: string]: "small" | "
|
|
6
|
+
size?: "small" | "xlarge" | "medium" | "large" | {
|
|
7
|
+
[x: string]: "small" | "xlarge" | "medium" | "large" | undefined;
|
|
8
8
|
} | undefined;
|
|
9
9
|
width?: "auto" | 1 | 2 | "full" | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 20 | 30 | {
|
|
10
10
|
[x: string]: "auto" | 1 | 2 | "full" | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 20 | 30 | undefined;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTLogo({ 'aria-label': ariaLabel = 'BT' , copyrightYear ='2025' , viewBoxWidth =105 , viewBoxHeight =43 , className , ...props }) {
|
|
19
|
+
return React.createElement(Symbol, _extends({
|
|
20
|
+
className: clsx('h-[43px] w-[105px]', className),
|
|
21
|
+
"aria-label": ariaLabel,
|
|
22
|
+
copyrightYear: copyrightYear,
|
|
23
|
+
viewBoxWidth: viewBoxWidth,
|
|
24
|
+
viewBoxHeight: viewBoxHeight
|
|
25
|
+
}, props), React.createElement("path", {
|
|
26
|
+
d: "M14.2593 22.8258C13.8282 22.8258 13.4147 22.6549 13.1099 22.3508C12.8051 22.0467 12.6339 21.6342 12.6339 21.2041C12.6339 20.7741 12.8051 20.3616 13.1099 20.0575C13.4147 19.7534 13.8282 19.5825 14.2593 19.5825H37.175C36.8325 16.9135 35.6262 14.429 33.7395 12.5062C33.7036 12.4767 33.6706 12.4437 33.641 12.408L30.8212 9.57011L30.7103 9.47182L21.2288 0L0 21.2041L21.2288 42.3714L30.6734 32.9119L30.8212 32.7768L33.641 29.9635L33.7764 29.8038C35.6422 27.8953 36.835 25.4332 37.175 22.7889L14.2593 22.8258Z",
|
|
27
|
+
fill: "#007BC6"
|
|
28
|
+
}), React.createElement("path", {
|
|
29
|
+
d: "M103.521 1.41278H74.1775V9.02954H84.9027V41.88H93.0543V9.02954H103.78V1.41278H103.521Z",
|
|
30
|
+
fill: "#020202"
|
|
31
|
+
}), React.createElement("path", {
|
|
32
|
+
d: "M68.8335 20.2828C70.0116 19.3585 70.9585 18.1739 71.5996 16.8223C72.2407 15.4706 72.5583 13.989 72.5276 12.494C72.6137 10.9994 72.3805 9.50369 71.8434 8.10581C71.3064 6.70796 70.4776 5.43995 69.4122 4.38579C67.2942 2.40788 64.1912 1.41278 60.2016 1.41278H41.4971V17.5063L46.127 21.1919L41.4971 24.8774V41.88H61.2852C69.092 41.88 74.1283 37.1625 74.1283 29.8775C74.2329 27.9442 73.7921 26.0205 72.8563 24.3246C71.9203 22.6287 70.5267 21.2284 68.8335 20.2828ZM49.6487 8.85762H60.2262C62.9475 8.85762 64.6345 10.4301 64.6345 12.9608C64.6371 13.5284 64.5232 14.0906 64.2995 14.6126C64.0759 15.1345 63.7473 15.6052 63.3342 15.9955C62.9211 16.3858 62.4322 16.6874 61.8976 16.8818C61.363 17.0761 60.7942 17.1591 60.2262 17.1254H49.6487V8.85762ZM60.2262 34.3861H49.6487V24.558H60.0538C63.7479 24.558 65.7796 26.3271 65.7796 29.472C65.7796 33.5507 62.7628 34.3861 60.2262 34.3861Z",
|
|
33
|
+
fill: "#020202"
|
|
34
|
+
}));
|
|
35
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTMultibrandLargeLogo({ 'aria-label': ariaLabel = 'BT' , copyrightYear ='2024' , viewBoxWidth =180 , viewBoxHeight =65 , align ='left' , offset =[
|
|
19
|
+
null,
|
|
20
|
+
52.59,
|
|
21
|
+
105.18
|
|
22
|
+
] , className , ...props }) {
|
|
23
|
+
return React.createElement(Symbol, _extends({
|
|
24
|
+
className: clsx('h-[65px] w-[180px]', className),
|
|
25
|
+
"aria-label": ariaLabel,
|
|
26
|
+
align: align,
|
|
27
|
+
offset: offset,
|
|
28
|
+
copyrightYear: copyrightYear,
|
|
29
|
+
viewBoxWidth: viewBoxWidth,
|
|
30
|
+
viewBoxHeight: viewBoxHeight
|
|
31
|
+
}, props), React.createElement("path", {
|
|
32
|
+
d: "M10.2799 33.4558C9.96916 33.4558 9.67106 33.3326 9.45135 33.1134C9.23158 32.8941 9.10813 32.5968 9.10813 32.2867C9.10813 31.9767 9.23158 31.6793 9.45135 31.4601C9.67106 31.2408 9.96916 31.1176 10.2799 31.1176H26.8006C26.5537 29.1935 25.684 27.4023 24.3238 26.0161C24.298 25.9948 24.2742 25.9711 24.2528 25.9453L22.2199 23.8994L22.14 23.8285L15.3045 17L0 32.2867L15.3045 47.5468L22.1134 40.7272L22.2199 40.6297L24.2528 38.6016L24.3504 38.4864C25.6955 37.1106 26.5555 35.3356 26.8006 33.4292L10.2799 33.4558Z",
|
|
33
|
+
fill: "#007BC6"
|
|
34
|
+
}), React.createElement("path", {
|
|
35
|
+
d: "M74.6314 18.0186H53.4768V23.5097H61.2089V47.1926H67.0856V23.5097H74.8179V18.0186H74.6314Z",
|
|
36
|
+
fill: "#020202"
|
|
37
|
+
}), React.createElement("path", {
|
|
38
|
+
d: "M49.6241 31.6225C50.4735 30.9562 51.1562 30.1021 51.6183 29.1277C52.0805 28.1533 52.3095 27.0851 52.2873 26.0073C52.3494 24.9298 52.1813 23.8515 51.7941 22.8438C51.4069 21.836 50.8095 20.9219 50.0414 20.1619C48.5145 18.736 46.2774 18.0186 43.4012 18.0186H29.9165V29.6209L33.2544 32.2779L29.9165 34.9349V47.1926H44.1824C49.8105 47.1926 53.4414 43.7916 53.4414 38.5396C53.5167 37.1459 53.199 35.759 52.5243 34.5364C51.8496 33.3137 50.8448 32.3042 49.6241 31.6225ZM35.7933 23.3858H43.4189C45.3808 23.3858 46.597 24.5194 46.597 26.3439C46.5989 26.7531 46.5167 27.1584 46.3555 27.5347C46.1943 27.911 45.9574 28.2503 45.6596 28.5317C45.3618 28.813 45.0092 29.0305 44.6238 29.1706C44.2384 29.3107 43.8284 29.3705 43.4189 29.3463H35.7933V23.3858ZM43.4189 41.79H35.7933V34.7046H43.2946C45.9578 34.7046 47.4225 35.98 47.4225 38.2473C47.4225 41.1878 45.2476 41.79 43.4189 41.79Z",
|
|
39
|
+
fill: "#020202"
|
|
40
|
+
}));
|
|
41
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTMultibrandSmallLogo({ 'aria-label': ariaLabel = 'BT' , copyrightYear ='2025' , viewBoxWidth =122 , viewBoxHeight =44 , align ='left' , offset =[
|
|
19
|
+
null,
|
|
20
|
+
36.865,
|
|
21
|
+
73.73
|
|
22
|
+
] , className , ...props }) {
|
|
23
|
+
return React.createElement(Symbol, _extends({
|
|
24
|
+
className: clsx('h-[44px] w-[122px]', className),
|
|
25
|
+
"aria-label": ariaLabel,
|
|
26
|
+
align: align,
|
|
27
|
+
offset: offset,
|
|
28
|
+
copyrightYear: copyrightYear,
|
|
29
|
+
viewBoxWidth: viewBoxWidth,
|
|
30
|
+
viewBoxHeight: viewBoxHeight
|
|
31
|
+
}, props), React.createElement("g", {
|
|
32
|
+
"clip-path": "url(#clip0_2154_48)"
|
|
33
|
+
}, React.createElement("path", {
|
|
34
|
+
d: "M6.63221 22.6166C6.43171 22.6166 6.23939 22.5372 6.09764 22.3957C5.95586 22.2543 5.87621 22.0624 5.87621 21.8624C5.87621 21.6624 5.95586 21.4705 6.09764 21.3291C6.23939 21.1876 6.43171 21.1081 6.63221 21.1081H17.2907C17.1314 19.8668 16.5703 18.7112 15.6928 17.8169C15.6761 17.8031 15.6608 17.7878 15.647 17.7711L14.3354 16.4512L14.2839 16.4055L9.87386 12L0 21.8624L9.87386 31.7076L14.2667 27.3079L14.3354 27.245L15.647 25.9365L15.71 25.8622C16.5778 24.9746 17.1326 23.8294 17.2907 22.5995L6.63221 22.6166Z",
|
|
35
|
+
fill: "#007BC6"
|
|
36
|
+
}), React.createElement("path", {
|
|
37
|
+
d: "M48.1493 12.6571H34.5012V16.1998H39.4897V31.4791H43.2811V16.1998H48.2697V12.6571H48.1493Z",
|
|
38
|
+
fill: "#020202"
|
|
39
|
+
}), React.createElement("path", {
|
|
40
|
+
d: "M32.0156 21.4339C32.5636 21.004 33.004 20.453 33.3022 19.8243C33.6004 19.1956 33.7481 18.5065 33.7338 17.8111C33.7739 17.116 33.6654 16.4203 33.4156 15.7701C33.1658 15.12 32.7803 14.5302 32.2848 14.0399C31.2997 13.1199 29.8565 12.6571 28.0008 12.6571H19.301V20.1425L21.4545 21.8567L19.301 23.5709V31.4791H28.5048C32.1359 31.4791 34.4783 29.2849 34.4783 25.8965C34.527 24.9973 34.322 24.1026 33.8867 23.3138C33.4514 22.525 32.8032 21.8737 32.0156 21.4339ZM23.0925 16.1198H28.0122C29.278 16.1198 30.0626 16.8512 30.0626 18.0283C30.0638 18.2923 30.0108 18.5538 29.9068 18.7965C29.8028 19.0393 29.65 19.2582 29.4578 19.4397C29.2657 19.6213 29.0383 19.7616 28.7896 19.852C28.541 19.9424 28.2764 19.981 28.0122 19.9653H23.0925V16.1198ZM28.0122 27.9935H23.0925V23.4223H27.9321C29.6502 23.4223 30.5952 24.2451 30.5952 25.7079C30.5952 27.605 29.1921 27.9935 28.0122 27.9935Z",
|
|
41
|
+
fill: "#020202"
|
|
42
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
43
|
+
id: "clip0_2154_48"
|
|
44
|
+
}, React.createElement("rect", {
|
|
45
|
+
width: "48.5714",
|
|
46
|
+
height: "20",
|
|
47
|
+
fill: "white",
|
|
48
|
+
transform: "translate(0 12)"
|
|
49
|
+
}))));
|
|
50
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
function _extends() {
|
|
2
|
+
_extends = Object.assign || function(target) {
|
|
3
|
+
for(var i = 1; i < arguments.length; i++){
|
|
4
|
+
var source = arguments[i];
|
|
5
|
+
for(var key in source){
|
|
6
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
7
|
+
target[key] = source[key];
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
return target;
|
|
12
|
+
};
|
|
13
|
+
return _extends.apply(this, arguments);
|
|
14
|
+
}
|
|
15
|
+
import { clsx } from 'clsx';
|
|
16
|
+
import React from 'react';
|
|
17
|
+
import { Symbol } from '../../symbol.component.js';
|
|
18
|
+
export function BTPanoramaLogo({ 'aria-label': ariaLabel = 'BT Panorama' , copyrightYear ='2025' , viewBoxWidth =180 , viewBoxHeight =22 , className , ...props }) {
|
|
19
|
+
return React.createElement(Symbol, _extends({
|
|
20
|
+
className: clsx('h-[22px] w-[180px]', className),
|
|
21
|
+
"aria-label": ariaLabel,
|
|
22
|
+
copyrightYear: copyrightYear,
|
|
23
|
+
viewBoxWidth: viewBoxWidth,
|
|
24
|
+
viewBoxHeight: viewBoxHeight
|
|
25
|
+
}, props), React.createElement("g", {
|
|
26
|
+
"clip-path": "url(#clip0_2154_174)"
|
|
27
|
+
}, React.createElement("path", {
|
|
28
|
+
d: "M37.618 0.716248V4.59036H43.0714V21.2453H47.1957V4.59036H52.6365V0.716248H37.618Z",
|
|
29
|
+
fill: "black"
|
|
30
|
+
}), React.createElement("path", {
|
|
31
|
+
"fill-rule": "evenodd",
|
|
32
|
+
"clip-rule": "evenodd",
|
|
33
|
+
d: "M34.9163 10.2894C36.1159 9.33088 36.8063 7.87428 36.7882 6.34056C36.7882 4.59036 36.2952 3.19518 35.2096 2.22977C34.1239 1.26435 32.5703 0.716248 30.5549 0.716248H21.0272V8.43333L24.0284 10.7441L21.0272 13.0611V21.2453H31.0665C35.0286 21.2453 37.5681 18.8598 37.5681 15.1477C37.6829 13.1563 36.6548 11.2728 34.9163 10.2894ZM25.1827 4.4907H30.5549C31.9151 4.4907 32.7699 5.26926 32.7699 6.55856C32.7795 7.14011 32.5463 7.69942 32.1261 8.10234C31.7058 8.50526 31.1366 8.71544 30.5549 8.68247H25.1889L25.1827 4.4907ZM25.1889 17.4397H30.5549V17.446C31.8278 17.446 33.3689 17.0162 33.3689 14.9483C33.3689 13.3476 32.3332 12.457 30.4613 12.457H25.1889V17.4397Z",
|
|
34
|
+
fill: "black"
|
|
35
|
+
}), React.createElement("path", {
|
|
36
|
+
d: "M7.45622 11.7843C7.01627 11.7817 6.62596 11.502 6.48285 11.0867C6.43835 10.9801 6.41504 10.8658 6.41422 10.7504C6.41234 10.6386 6.43581 10.5279 6.48285 10.4265C6.61818 10.0073 7.0088 9.72304 7.44998 9.72265H18.8184C18.6134 8.45062 18.0182 7.27335 17.115 6.35305L17.0651 6.29699L15.6362 4.85821L15.5801 4.81461L10.7694 0L0 10.7441L10.7632 21.4945L15.5551 16.6923L15.6362 16.6176L17.0651 15.185L17.1337 15.1103C18.021 14.1918 18.6065 13.025 18.8121 11.7656L7.45622 11.7843Z",
|
|
37
|
+
fill: "#007BC6"
|
|
38
|
+
}), React.createElement("path", {
|
|
39
|
+
d: "M60.3096 0.666443H69.1736C69.7567 0.666443 70.3982 0.734509 71.098 0.870641C71.8172 1.00677 72.4781 1.28876 73.0807 1.7166C73.7028 2.125 74.2179 2.71814 74.6261 3.49604C75.0343 4.25449 75.2384 5.25603 75.2384 6.50066C75.2384 8.32872 74.6747 9.73865 73.5473 10.7305C72.4198 11.7223 70.8064 12.2182 68.7071 12.2182H61.5925V21.4946H60.3096V0.666443ZM61.5925 11.1097H68.9112C69.8442 11.1097 70.6315 10.9736 71.273 10.7013C71.9339 10.4096 72.4587 10.0401 72.8475 9.59279C73.2363 9.1455 73.5181 8.6496 73.6931 8.10507C73.868 7.56054 73.9555 7.01602 73.9555 6.47149C73.9555 6.08254 73.8972 5.62553 73.7805 5.10045C73.6639 4.55592 73.4306 4.04057 73.0807 3.55438C72.7309 3.04875 72.2352 2.63063 71.5937 2.30003C70.9717 1.94997 70.1358 1.77495 69.0861 1.77495H61.5925V11.1097Z",
|
|
40
|
+
fill: "black"
|
|
41
|
+
}), React.createElement("path", {
|
|
42
|
+
d: "M86.3927 18.5192H86.3344C86.1595 18.9664 85.9067 19.3943 85.5763 19.8027C85.2458 20.1916 84.8376 20.5417 84.3517 20.8528C83.8851 21.164 83.3506 21.4071 82.748 21.5821C82.1454 21.7571 81.4845 21.8447 80.7652 21.8447C79.1713 21.8447 77.9369 21.5043 77.0622 20.8237C76.1874 20.1236 75.7501 19.054 75.7501 17.6149C75.7501 16.7397 75.925 16.0299 76.2749 15.4854C76.6248 14.9214 77.0622 14.4838 77.587 14.1727C78.1313 13.8421 78.7242 13.6087 79.3657 13.4726C80.0266 13.3364 80.6583 13.2392 81.2609 13.1808L82.9812 13.035C83.7782 12.9767 84.4003 12.8891 84.8473 12.7725C85.3139 12.6363 85.6638 12.4613 85.897 12.2474C86.1303 12.014 86.2761 11.7223 86.3344 11.3722C86.3927 11.0222 86.4219 10.5846 86.4219 10.0595C86.4219 9.65116 86.3441 9.27194 86.1886 8.92189C86.0331 8.57184 85.7901 8.26067 85.4597 7.9884C85.1292 7.71614 84.7016 7.50222 84.1767 7.34664C83.6519 7.19106 83.0104 7.11327 82.2523 7.11327C80.911 7.11327 79.8225 7.44388 78.9866 8.10509C78.1702 8.7663 77.7231 9.76785 77.6453 11.1097H76.5373C76.6151 9.45668 77.1399 8.22177 78.1119 7.40498C79.1032 6.56875 80.5028 6.15063 82.3106 6.15063C84.1184 6.15063 85.4305 6.51041 86.2469 7.22996C87.0828 7.93006 87.5007 8.85382 87.5007 10.0012V18.7234C87.5007 18.9373 87.5007 19.1512 87.5007 19.3651C87.5202 19.579 87.559 19.7735 87.6173 19.9485C87.6757 20.1236 87.7729 20.2694 87.9089 20.3861C88.045 20.4833 88.2394 20.532 88.4921 20.532C88.6865 20.532 88.9586 20.5028 89.3085 20.4444V21.3779C89.0169 21.4557 88.7156 21.4946 88.4046 21.4946C87.9575 21.4946 87.5979 21.4363 87.3258 21.3196C87.0731 21.2029 86.8787 21.0473 86.7426 20.8528C86.6065 20.6584 86.5093 20.4347 86.451 20.1819C86.4122 19.9096 86.3927 19.6179 86.3927 19.3068V18.5192ZM86.3927 12.9767C86.1206 13.3073 85.7026 13.5309 85.1389 13.6476C84.5946 13.7643 83.9823 13.8518 83.302 13.9101L81.4359 14.0852C80.8916 14.1435 80.3473 14.231 79.803 14.3477C79.2587 14.4449 78.7631 14.62 78.316 14.8728C77.8883 15.1256 77.5384 15.4756 77.2663 15.9229C76.9941 16.3508 76.8581 16.9147 76.8581 17.6149C76.8581 18.7234 77.208 19.5499 77.9078 20.0944C78.6075 20.6195 79.5698 20.882 80.7944 20.882C82.0579 20.882 83.059 20.6584 83.7977 20.2111C84.5363 19.7443 85.1001 19.2193 85.4888 18.6358C85.8776 18.033 86.1206 17.4593 86.2178 16.9147C86.3344 16.3508 86.3927 15.9715 86.3927 15.7771V12.9767Z",
|
|
43
|
+
fill: "black"
|
|
44
|
+
}), React.createElement("path", {
|
|
45
|
+
d: "M91.0288 6.50068H92.1368V9.7095H92.1952C92.3895 9.14552 92.6617 8.64962 93.0116 8.22177C93.3809 7.77448 93.7988 7.39527 94.2654 7.08411C94.7513 6.77295 95.2762 6.53958 95.8399 6.384C96.4036 6.22842 96.9771 6.15063 97.5602 6.15063C98.435 6.15063 99.1736 6.25759 99.7762 6.47151C100.398 6.68543 100.904 6.96742 101.292 7.31747C101.681 7.66752 101.982 8.06619 102.196 8.51348C102.43 8.94133 102.595 9.37889 102.692 9.82618C102.789 10.2735 102.848 10.711 102.867 11.1389C102.886 11.5473 102.896 11.907 102.896 12.2182V21.4946H101.788V12.014C101.788 11.6445 101.759 11.1778 101.701 10.6138C101.642 10.0498 101.467 9.51504 101.176 9.0094C100.904 8.48432 100.476 8.03703 99.8928 7.66752C99.3291 7.29802 98.5419 7.11327 97.5311 7.11327C96.6758 7.11327 95.9176 7.26885 95.2567 7.58001C94.5958 7.89117 94.0321 8.32874 93.5656 8.89271C93.099 9.43724 92.7394 10.0984 92.4867 10.8763C92.2535 11.6348 92.1368 12.471 92.1368 13.385V21.4946H91.0288V6.50068Z",
|
|
46
|
+
fill: "black"
|
|
47
|
+
}), React.createElement("path", {
|
|
48
|
+
d: "M105.449 13.9976C105.449 12.928 105.595 11.9265 105.886 10.993C106.197 10.0401 106.645 9.20387 107.228 8.48431C107.811 7.76476 108.53 7.20079 109.385 6.79239C110.241 6.36455 111.222 6.15063 112.33 6.15063C113.438 6.15063 114.42 6.36455 115.275 6.79239C116.131 7.20079 116.85 7.76476 117.433 8.48431C118.016 9.20387 118.453 10.0401 118.745 10.993C119.056 11.9265 119.212 12.928 119.212 13.9976C119.212 15.0672 119.056 16.0785 118.745 17.0314C118.453 17.9844 118.016 18.8206 117.433 19.5401C116.85 20.2402 116.131 20.8042 115.275 21.2321C114.42 21.6405 113.438 21.8447 112.33 21.8447C111.222 21.8447 110.241 21.6405 109.385 21.2321C108.53 20.8042 107.811 20.2402 107.228 19.5401C106.645 18.8206 106.197 17.9844 105.886 17.0314C105.595 16.0785 105.449 15.0672 105.449 13.9976ZM106.557 13.9976C106.557 14.8922 106.683 15.7576 106.936 16.5939C107.189 17.4107 107.558 18.1399 108.044 18.7817C108.53 19.4235 109.133 19.9388 109.852 20.3278C110.571 20.6973 111.397 20.882 112.33 20.882C113.263 20.882 114.09 20.6973 114.809 20.3278C115.528 19.9388 116.131 19.4235 116.617 18.7817C117.102 18.1399 117.472 17.4107 117.725 16.5939C117.977 15.7576 118.104 14.8922 118.104 13.9976C118.104 13.1031 117.977 12.2474 117.725 11.4306C117.472 10.5943 117.102 9.85536 116.617 9.21359C116.131 8.57183 115.528 8.0662 114.809 7.6967C114.09 7.30775 113.263 7.11327 112.33 7.11327C111.397 7.11327 110.571 7.30775 109.852 7.6967C109.133 8.0662 108.53 8.57183 108.044 9.21359C107.558 9.85536 107.189 10.5943 106.936 11.4306C106.683 12.2474 106.557 13.1031 106.557 13.9976Z",
|
|
49
|
+
fill: "black"
|
|
50
|
+
}), React.createElement("path", {
|
|
51
|
+
d: "M122.918 9.82615H123.005C123.141 9.33997 123.384 8.88295 123.734 8.4551C124.104 8.02726 124.541 7.65777 125.046 7.34661C125.571 7.03545 126.145 6.80209 126.767 6.64651C127.408 6.47148 128.069 6.39369 128.749 6.41314V7.52164C128.166 7.44385 127.496 7.50219 126.738 7.69667C125.999 7.89114 125.289 8.31898 124.609 8.98019C124.337 9.2719 124.094 9.55389 123.88 9.82615C123.686 10.0984 123.52 10.3999 123.384 10.7305C123.248 11.0611 123.141 11.4306 123.064 11.839C122.986 12.2474 122.937 12.7336 122.918 13.2975V21.4946H121.81V6.50065H122.918V9.82615Z",
|
|
52
|
+
fill: "black"
|
|
53
|
+
}), React.createElement("path", {
|
|
54
|
+
d: "M139.298 18.5192H139.24C139.065 18.9664 138.812 19.3943 138.482 19.8027C138.152 20.1916 137.743 20.5417 137.257 20.8528C136.791 21.164 136.256 21.4071 135.654 21.5821C135.051 21.7571 134.39 21.8447 133.671 21.8447C132.077 21.8447 130.843 21.5043 129.968 20.8237C129.093 20.1236 128.656 19.054 128.656 17.6149C128.656 16.7397 128.831 16.0299 129.181 15.4854C129.531 14.9214 129.968 14.4838 130.493 14.1727C131.037 13.8421 131.63 13.6087 132.271 13.4726C132.932 13.3364 133.564 13.2392 134.167 13.1808L135.887 13.035C136.684 12.9767 137.306 12.8891 137.753 12.7725C138.22 12.6363 138.57 12.4613 138.803 12.2474C139.036 12.014 139.182 11.7223 139.24 11.3722C139.298 11.0222 139.328 10.5846 139.328 10.0595C139.328 9.65116 139.25 9.27194 139.094 8.92189C138.939 8.57184 138.696 8.26067 138.365 7.9884C138.035 7.71614 137.607 7.50222 137.082 7.34664C136.558 7.19106 135.916 7.11327 135.158 7.11327C133.817 7.11327 132.728 7.44388 131.892 8.10509C131.076 8.7663 130.629 9.76785 130.551 11.1097H129.443C129.521 9.45668 130.046 8.22177 131.018 7.40498C132.009 6.56875 133.409 6.15063 135.216 6.15063C137.024 6.15063 138.336 6.51041 139.153 7.22996C139.989 7.93006 140.406 8.85382 140.406 10.0012V18.7234C140.406 18.9373 140.406 19.1512 140.406 19.3651C140.426 19.579 140.465 19.7735 140.523 19.9485C140.581 20.1236 140.679 20.2694 140.815 20.3861C140.951 20.4833 141.145 20.532 141.398 20.532C141.592 20.532 141.864 20.5028 142.214 20.4444V21.3779C141.923 21.4557 141.621 21.4946 141.31 21.4946C140.863 21.4946 140.504 21.4363 140.232 21.3196C139.979 21.2029 139.784 21.0473 139.648 20.8528C139.512 20.6584 139.415 20.4347 139.357 20.1819C139.318 19.9096 139.298 19.6179 139.298 19.3068V18.5192ZM139.298 12.9767C139.026 13.3073 138.608 13.5309 138.045 13.6476C137.5 13.7643 136.888 13.8518 136.208 13.9101L134.342 14.0852C133.797 14.1435 133.253 14.231 132.709 14.3477C132.164 14.4449 131.669 14.62 131.222 14.8728C130.794 15.1256 130.444 15.4756 130.172 15.9229C129.9 16.3508 129.764 16.9147 129.764 17.6149C129.764 18.7234 130.114 19.5499 130.813 20.0944C131.513 20.6195 132.475 20.882 133.7 20.882C134.964 20.882 135.965 20.6584 136.703 20.2111C137.442 19.7443 138.006 19.2193 138.395 18.6358C138.783 18.033 139.026 17.4593 139.124 16.9147C139.24 16.3508 139.298 15.9715 139.298 15.7771V12.9767Z",
|
|
55
|
+
fill: "black"
|
|
56
|
+
}), React.createElement("path", {
|
|
57
|
+
d: "M143.964 6.50068H145.072V9.56364H145.13C145.247 9.09691 145.451 8.65935 145.742 8.25096C146.034 7.82311 146.384 7.4536 146.792 7.14245C147.22 6.83129 147.686 6.58819 148.192 6.41317C148.716 6.23814 149.261 6.15063 149.824 6.15063C150.544 6.15063 151.166 6.24786 151.691 6.44234C152.215 6.61736 152.663 6.86046 153.032 7.17162C153.401 7.46333 153.693 7.80366 153.907 8.1926C154.12 8.5621 154.266 8.94133 154.344 9.33028H154.402C154.849 8.28012 155.442 7.4925 156.181 6.96742C156.939 6.42289 157.93 6.15063 159.155 6.15063C159.835 6.15063 160.457 6.25759 161.021 6.47151C161.604 6.66598 162.1 6.97714 162.508 7.40498C162.936 7.81338 163.266 8.33847 163.5 8.98023C163.733 9.622 163.849 10.3804 163.849 11.2556V21.4946H162.741V11.2264C162.741 10.2735 162.596 9.52476 162.304 8.98023C162.013 8.43571 161.663 8.0273 161.254 7.75504C160.866 7.46333 160.467 7.2883 160.059 7.22996C159.67 7.15217 159.369 7.11327 159.155 7.11327C158.475 7.11327 157.843 7.22996 157.26 7.46333C156.696 7.6967 156.2 8.04675 155.773 8.51348C155.364 8.98022 155.044 9.56364 154.81 10.2637C154.577 10.9444 154.461 11.732 154.461 12.6266V21.4946H153.353V11.2264C153.353 10.2929 153.207 9.55393 152.915 9.0094C152.643 8.44543 152.313 8.0273 151.924 7.75504C151.555 7.48277 151.166 7.30775 150.758 7.22996C150.369 7.15217 150.058 7.11327 149.824 7.11327C149.3 7.11327 148.755 7.22024 148.192 7.43417C147.628 7.64808 147.113 7.97868 146.646 8.42597C146.18 8.87326 145.801 9.44697 145.509 10.1471C145.218 10.8472 145.072 11.6737 145.072 12.6266V21.4946H143.964V6.50068Z",
|
|
58
|
+
fill: "black"
|
|
59
|
+
}), React.createElement("path", {
|
|
60
|
+
d: "M177.084 18.5192H177.026C176.851 18.9664 176.598 19.3943 176.268 19.8027C175.937 20.1916 175.529 20.5417 175.043 20.8528C174.577 21.164 174.042 21.4071 173.439 21.5821C172.837 21.7571 172.176 21.8447 171.457 21.8447C169.863 21.8447 168.628 21.5043 167.754 20.8237C166.879 20.1236 166.442 19.054 166.442 17.6149C166.442 16.7397 166.616 16.0299 166.966 15.4854C167.316 14.9214 167.754 14.4838 168.278 14.1727C168.823 13.8421 169.416 13.6087 170.057 13.4726C170.718 13.3364 171.35 13.2392 171.952 13.1808L173.673 13.035C174.47 12.9767 175.092 12.8891 175.539 12.7725C176.005 12.6363 176.355 12.4613 176.589 12.2474C176.822 12.014 176.968 11.7223 177.026 11.3722C177.084 11.0222 177.113 10.5846 177.113 10.0595C177.113 9.65116 177.036 9.27194 176.88 8.92189C176.725 8.57184 176.482 8.26067 176.151 7.9884C175.821 7.71614 175.393 7.50222 174.868 7.34664C174.343 7.19106 173.702 7.11327 172.944 7.11327C171.603 7.11327 170.514 7.44388 169.678 8.10509C168.862 8.7663 168.415 9.76785 168.337 11.1097H167.229C167.307 9.45668 167.831 8.22177 168.803 7.40498C169.795 6.56875 171.194 6.15063 173.002 6.15063C174.81 6.15063 176.122 6.51041 176.938 7.22996C177.774 7.93006 178.192 8.85382 178.192 10.0012V18.7234C178.192 18.9373 178.192 19.1512 178.192 19.3651C178.212 19.579 178.251 19.7735 178.309 19.9485C178.367 20.1236 178.464 20.2694 178.6 20.3861C178.736 20.4833 178.931 20.532 179.184 20.532C179.378 20.532 179.65 20.5028 180 20.4444V21.3779C179.708 21.4557 179.407 21.4946 179.096 21.4946C178.649 21.4946 178.289 21.4363 178.017 21.3196C177.765 21.2029 177.57 21.0473 177.434 20.8528C177.298 20.6584 177.201 20.4347 177.143 20.1819C177.104 19.9096 177.084 19.6179 177.084 19.3068V18.5192ZM177.084 12.9767C176.812 13.3073 176.394 13.5309 175.83 13.6476C175.286 13.7643 174.674 13.8518 173.993 13.9101L172.127 14.0852C171.583 14.1435 171.039 14.231 170.495 14.3477C169.95 14.4449 169.455 14.62 169.007 14.8728C168.58 15.1256 168.23 15.4756 167.958 15.9229C167.686 16.3508 167.55 16.9147 167.55 17.6149C167.55 18.7234 167.899 19.5499 168.599 20.0944C169.299 20.6195 170.261 20.882 171.486 20.882C172.749 20.882 173.75 20.6584 174.489 20.2111C175.228 19.7443 175.792 19.2193 176.18 18.6358C176.569 18.033 176.812 17.4593 176.909 16.9147C177.026 16.3508 177.084 15.9715 177.084 15.7771V12.9767Z",
|
|
61
|
+
fill: "black"
|
|
62
|
+
})), React.createElement("defs", null, React.createElement("clipPath", {
|
|
63
|
+
id: "clip0_2154_174"
|
|
64
|
+
}, React.createElement("rect", {
|
|
65
|
+
width: "180",
|
|
66
|
+
height: "22",
|
|
67
|
+
fill: "white"
|
|
68
|
+
}))));
|
|
69
|
+
}
|