@qite/tide-booking-component 1.2.1 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/build-cjs/booking-wizard/features/flight-options/flight-option-flight.d.ts +1 -1
- package/build/build-cjs/booking-wizard/features/flight-options/flight-option.d.ts +1 -1
- package/build/build-cjs/index.js +1482 -441
- package/build/build-cjs/shared/utils/localization-util.d.ts +0 -228
- package/build/build-esm/booking-wizard/features/flight-options/flight-option-flight.d.ts +1 -1
- package/build/build-esm/booking-wizard/features/flight-options/flight-option.d.ts +1 -1
- package/build/build-esm/index.js +1483 -442
- package/build/build-esm/shared/utils/localization-util.d.ts +0 -228
- package/package.json +4 -3
- package/src/booking-product/components/icon.tsx +34 -23
- package/src/shared/translations/fr-BE.json +89 -88
|
@@ -2,234 +2,6 @@ export declare const languages: string[];
|
|
|
2
2
|
export declare const defaultLanguage = "nl-BE";
|
|
3
3
|
export declare const formatPrice: (price: number, locale?: string) => string;
|
|
4
4
|
export declare const getTranslations: (language: string) => {
|
|
5
|
-
STEPS: {
|
|
6
|
-
PERSONAL_DETAILS: string;
|
|
7
|
-
EXTRA_OPTIONS: string;
|
|
8
|
-
SUMMARY: string;
|
|
9
|
-
CONFIRMATION: string;
|
|
10
|
-
ERROR: string;
|
|
11
|
-
PREVIOUS: string;
|
|
12
|
-
NEXT: string;
|
|
13
|
-
SUBMIT_BOOKING: string;
|
|
14
|
-
SUBMIT_OFFER: string;
|
|
15
|
-
COMPOSE: string;
|
|
16
|
-
ROOM_OPTIONS: string;
|
|
17
|
-
FLIGHT_OPTIONS: string;
|
|
18
|
-
};
|
|
19
|
-
INPUT: {
|
|
20
|
-
INCREASE: string;
|
|
21
|
-
DECREASE: string;
|
|
22
|
-
};
|
|
23
|
-
FLIGHTS_FORM: {
|
|
24
|
-
OUTWARD_FLIGHTS: string;
|
|
25
|
-
OUTWARD_FLIGHT: string;
|
|
26
|
-
RETURN_FLIGHTS: string;
|
|
27
|
-
RETURN_FLIGHT: string;
|
|
28
|
-
DIRECT_FLIGHT: string;
|
|
29
|
-
STOP: string;
|
|
30
|
-
STOPS: string;
|
|
31
|
-
FLIGHT_STOPS: string;
|
|
32
|
-
DIFFERENT_OPTION_WARNING: string;
|
|
33
|
-
FILTER_OPTIONS: string;
|
|
34
|
-
AIRLINES: string;
|
|
35
|
-
AIRPORTS: string;
|
|
36
|
-
NUMBER_OF_STOPS: string;
|
|
37
|
-
FLIGHT_OUTWARD: string;
|
|
38
|
-
DEPARTURE_TIME: string;
|
|
39
|
-
TRAVEL_DURATION: string;
|
|
40
|
-
CHANGE_TIME: string;
|
|
41
|
-
FLIGHT_RETURN: string;
|
|
42
|
-
NO_FLIGHTS_FOUND: string;
|
|
43
|
-
STARTING: string;
|
|
44
|
-
LOWEST_PRICE: string;
|
|
45
|
-
CHOOSE_YOUR_CLASS: string;
|
|
46
|
-
PLUS_ONE_DAY: string;
|
|
47
|
-
STOP_TIME: string;
|
|
48
|
-
NIGHT_DEPARTURE: string;
|
|
49
|
-
MORNING_DEPARTURE: string;
|
|
50
|
-
AFTERNOON_DEPARTURE: string;
|
|
51
|
-
EVENING_DEPARTURE: string;
|
|
52
|
-
};
|
|
53
|
-
PRODUCT: {
|
|
54
|
-
STAY_INCLUDED: string;
|
|
55
|
-
FLIGHT_INCLUDED: string;
|
|
56
|
-
TRANSFER_INCLUDED: string;
|
|
57
|
-
LOADING_PRICE: string;
|
|
58
|
-
PER_PERSON: string;
|
|
59
|
-
PER_NIGHT: string;
|
|
60
|
-
PER_PERSON_PER_NIGHT: string;
|
|
61
|
-
BOOK_NOW: string;
|
|
62
|
-
TO_YOUR_OFFER: string;
|
|
63
|
-
NOT_AVAILABLE: string;
|
|
64
|
-
NUMBER_OF_ROOMS: string;
|
|
65
|
-
AGE_BY_DEPARTURE_DATE: string;
|
|
66
|
-
YEAR: string;
|
|
67
|
-
APPLY: string;
|
|
68
|
-
EDIT: string;
|
|
69
|
-
DEPARTURE: string;
|
|
70
|
-
DEPARTURE_DATE: string;
|
|
71
|
-
RETURN: string;
|
|
72
|
-
RETURN_DATE: string;
|
|
73
|
-
WHO_YOU_TRAVELING_WITH: string;
|
|
74
|
-
TRAVEL_PERIOD: string;
|
|
75
|
-
CLOSE: string;
|
|
76
|
-
};
|
|
77
|
-
MAIN: {
|
|
78
|
-
PREPARING_BOOKING: string;
|
|
79
|
-
PREPARING_OFFEr: string;
|
|
80
|
-
PRODUCT_UNAVAILABLE: string;
|
|
81
|
-
};
|
|
82
|
-
SHARED: {
|
|
83
|
-
ROOM: string;
|
|
84
|
-
ROOMS: string;
|
|
85
|
-
TOTAL_PRICE: string;
|
|
86
|
-
ADULTS: string;
|
|
87
|
-
CHILDREN: string;
|
|
88
|
-
SELECT: string;
|
|
89
|
-
SELECTED: string;
|
|
90
|
-
};
|
|
91
|
-
SIDEBAR: {
|
|
92
|
-
OVERVIEW: string;
|
|
93
|
-
SLIDE_TOTAL_PRICE: string;
|
|
94
|
-
SLIDE_DEPOSIT: string;
|
|
95
|
-
TRAVEL_INFO: string;
|
|
96
|
-
TRAVELERS: string;
|
|
97
|
-
TRAVELERS_ADULTS: string;
|
|
98
|
-
TRAVELERS_ADULT: string;
|
|
99
|
-
TRAVELERS_CHILDREN: string;
|
|
100
|
-
TRAVELERS_CHILD: string;
|
|
101
|
-
DEPARTURE: string;
|
|
102
|
-
DEPARTURE_SINGLE: string;
|
|
103
|
-
ARRIVAL: string;
|
|
104
|
-
FLIGHT: string;
|
|
105
|
-
ACCOMMODATION: string;
|
|
106
|
-
BASE_PRICE: string;
|
|
107
|
-
OPTIONS: string;
|
|
108
|
-
INCLUDED_COSTS: string;
|
|
109
|
-
EXTRA_COSTS: string;
|
|
110
|
-
DEPOSIT: string;
|
|
111
|
-
DEPOSIT_TEXT1: string;
|
|
112
|
-
DEPOSIT_TEXT2: string;
|
|
113
|
-
DEPOSIT_TEXT3: string;
|
|
114
|
-
DEPOSIT_TEXT4: string;
|
|
115
|
-
DEPOSIT_TEXT5: string;
|
|
116
|
-
DEPOSIT_TEXT6: string;
|
|
117
|
-
LUGGAGE_INCLUDED: string;
|
|
118
|
-
DEPARTURE_FLIGHT: string;
|
|
119
|
-
ARRIVAL_FLIGHT: string;
|
|
120
|
-
FLIGHT_DEPARTURE: string;
|
|
121
|
-
FLIGHT_ARRIVAL: string;
|
|
122
|
-
ON_REQUEST: string;
|
|
123
|
-
CHANGES: string;
|
|
124
|
-
};
|
|
125
|
-
TRAVELERS_FORM: {
|
|
126
|
-
TRAVELER: string;
|
|
127
|
-
ADULT: string;
|
|
128
|
-
ADULTS: string;
|
|
129
|
-
CHILD: string;
|
|
130
|
-
CHILDREN: string;
|
|
131
|
-
GENDER: string;
|
|
132
|
-
MALE: string;
|
|
133
|
-
FEMALE: string;
|
|
134
|
-
OTHER: string;
|
|
135
|
-
MAIN_BOOKER: string;
|
|
136
|
-
FIRST_NAME: string;
|
|
137
|
-
LAST_NAME: string;
|
|
138
|
-
BIRTHDATE: string;
|
|
139
|
-
STREET: string;
|
|
140
|
-
STREET_PLACEHOLDER: string;
|
|
141
|
-
HOUSE_NUMBER: string;
|
|
142
|
-
POST_BOX: string;
|
|
143
|
-
ZIPCODE: string;
|
|
144
|
-
CITY: string;
|
|
145
|
-
CITY_PLACEHOLDER: string;
|
|
146
|
-
COUNTRY: string;
|
|
147
|
-
SELECT_COUNTRY: string;
|
|
148
|
-
PHONE: string;
|
|
149
|
-
EMAIL: string;
|
|
150
|
-
REPEAT_EMAIL: string;
|
|
151
|
-
VALIDATION_MESSAGE: string;
|
|
152
|
-
BOOK_WITH_AGENT: string;
|
|
153
|
-
CHOOSE_OFFICE: string;
|
|
154
|
-
CHOOSE_AGENT_PLACEHOLDER: string;
|
|
155
|
-
COUNTRIES: {
|
|
156
|
-
BELGIUM: string;
|
|
157
|
-
NETHERLANDS: string;
|
|
158
|
-
FRANCE: string;
|
|
159
|
-
};
|
|
160
|
-
VALIDATION: {
|
|
161
|
-
TRAVELER_X_FIELD: string;
|
|
162
|
-
TRAVELER_X_IS_NO_ADULT: string;
|
|
163
|
-
TRAVELER_X_IS_NO_CHILD: string;
|
|
164
|
-
NO_MAIN_BOOKER_SELECTED: string;
|
|
165
|
-
MAIN_BOOKER_FIELD: string;
|
|
166
|
-
MAIN_BOOKER_EMAIL_IS_INVALID: string;
|
|
167
|
-
MAIN_BOOKER_EMAIL_DOES_NOT_MATCH: string;
|
|
168
|
-
AGENT_IS_REQUIRED: string;
|
|
169
|
-
};
|
|
170
|
-
};
|
|
171
|
-
ROOM_OPTIONS_FORM: {
|
|
172
|
-
TRAVELER_GROUP: string;
|
|
173
|
-
ALTERNATIVES_TRAVELER_GROUP: string;
|
|
174
|
-
SHOW_ALTERNATIVES: string;
|
|
175
|
-
};
|
|
176
|
-
OPTIONS_FORM: {
|
|
177
|
-
NO_OPTIONS_TITLE: string;
|
|
178
|
-
NO_OPTIONS_MESSAGE: string;
|
|
179
|
-
UNIT_TITLE: string;
|
|
180
|
-
PACKAGE: string;
|
|
181
|
-
DAY: string;
|
|
182
|
-
DAYS: string;
|
|
183
|
-
NIGHT: string;
|
|
184
|
-
NIGHTS: string;
|
|
185
|
-
PER_PAX_TITLE: string;
|
|
186
|
-
PER_BOOKING_TITLE: string;
|
|
187
|
-
PER_UNIT_TITLE: string;
|
|
188
|
-
NONE: string;
|
|
189
|
-
};
|
|
190
|
-
SUMMARY: {
|
|
191
|
-
PERSONAL_DETAILS: string;
|
|
192
|
-
TRAVELERS: string;
|
|
193
|
-
TRAVELER: string;
|
|
194
|
-
ADULTS: string;
|
|
195
|
-
ADULT: string;
|
|
196
|
-
CHILDREN: string;
|
|
197
|
-
CHILD: string;
|
|
198
|
-
MAIN_BOOKER: string;
|
|
199
|
-
NOTIFICATIONS_TITLE: string;
|
|
200
|
-
VALIDATE_TITLE: string;
|
|
201
|
-
VALIDATE_TEXT_BOOKING: string;
|
|
202
|
-
VALIDATE_TEXT_OFFER: string;
|
|
203
|
-
OPTIONS: string;
|
|
204
|
-
REMARKS: string;
|
|
205
|
-
VOUCHERS: string;
|
|
206
|
-
VOUCHER_VALIDATE: string;
|
|
207
|
-
ADD_VOUCHER: string;
|
|
208
|
-
VOUCHER_VALID: string;
|
|
209
|
-
VOUCHER_INVALID: string;
|
|
210
|
-
};
|
|
211
|
-
CONFIRMATION: {
|
|
212
|
-
TITLE_TEXT_OFFER: string;
|
|
213
|
-
TITLE_TEXT_BOOKING: string;
|
|
214
|
-
MESSAGE_TEXT1: string;
|
|
215
|
-
MESSAGE_TEXT2_OFFER: string;
|
|
216
|
-
MESSAGE_TEXT2_BOOKING: string;
|
|
217
|
-
QUESTIONS_TEXT1: string;
|
|
218
|
-
QUESTIONS_TEXT2: string;
|
|
219
|
-
QUESTIONS_TEXT3: string;
|
|
220
|
-
QUESTIONS_ALT: string;
|
|
221
|
-
MAIL_SUBJECT: string;
|
|
222
|
-
};
|
|
223
|
-
ERROR: {
|
|
224
|
-
TRY_AGAIN: string;
|
|
225
|
-
MESSAGE_TEXT1: string;
|
|
226
|
-
MESSAGE_TEXT2: string;
|
|
227
|
-
ERROR_TEXT1: string;
|
|
228
|
-
ERROR_TEXT2: string;
|
|
229
|
-
ERROR_TEXT3: string;
|
|
230
|
-
ERROR_ALT: string;
|
|
231
|
-
};
|
|
232
|
-
} | {
|
|
233
5
|
STEPS: {
|
|
234
6
|
PERSONAL_DETAILS: string;
|
|
235
7
|
EXTRA_OPTIONS: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qite/tide-booking-component",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "React Booking wizard & Booking product component for Tide",
|
|
5
5
|
"main": "build/build-cjs/index.js",
|
|
6
6
|
"module": "build/build-esm/index.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@types/flat": "^5.0.2",
|
|
35
35
|
"@types/lodash": "^4.14.171",
|
|
36
36
|
"@types/reach__router": "^1.3.9",
|
|
37
|
-
"@types/react-dom": "^17.0.2",
|
|
38
37
|
"@types/react": "^17.0.2",
|
|
38
|
+
"@types/react-dom": "^17.0.2",
|
|
39
39
|
"@types/uuid": "^8.3.1",
|
|
40
40
|
"date-fns": "^2.22.1",
|
|
41
41
|
"flat": "^5.0.2",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"uuid": "^8.3.2"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@qite/tide-client": "^1.1.57"
|
|
74
|
+
"@qite/tide-client": "^1.1.57",
|
|
75
|
+
"react-html-comment": "^2.0.16"
|
|
75
76
|
}
|
|
76
77
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { isEmpty } from "lodash";
|
|
2
2
|
import React, { useContext } from "react";
|
|
3
3
|
import SettingsContext from "../settings-context";
|
|
4
|
+
import HTMLComment from "react-html-comment";
|
|
4
5
|
|
|
5
6
|
interface IconProps {
|
|
6
7
|
name: string;
|
|
@@ -37,10 +38,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
37
38
|
.join(" ")}
|
|
38
39
|
width={width}
|
|
39
40
|
height={height}
|
|
40
|
-
viewBox="0 0
|
|
41
|
+
viewBox="0 0 384 512"
|
|
41
42
|
>
|
|
43
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
42
44
|
{title && <title>{title}</title>}
|
|
43
|
-
<path
|
|
45
|
+
<path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/>
|
|
44
46
|
</svg>);
|
|
45
47
|
|
|
46
48
|
case "ui-plus":
|
|
@@ -51,6 +53,7 @@ const Icon: React.FC<IconProps> = ({
|
|
|
51
53
|
height={height}
|
|
52
54
|
viewBox="0 0 448 512"
|
|
53
55
|
>
|
|
56
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
54
57
|
{title && <title>{title}</title>}
|
|
55
58
|
<path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z"/>
|
|
56
59
|
</svg>);
|
|
@@ -63,6 +66,7 @@ const Icon: React.FC<IconProps> = ({
|
|
|
63
66
|
height={height}
|
|
64
67
|
viewBox="0 0 448 512"
|
|
65
68
|
>
|
|
69
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
66
70
|
{title && <title>{title}</title>}
|
|
67
71
|
<path d="M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z"/>
|
|
68
72
|
</svg>);
|
|
@@ -75,6 +79,7 @@ const Icon: React.FC<IconProps> = ({
|
|
|
75
79
|
height={height}
|
|
76
80
|
viewBox="0 0 320 512"
|
|
77
81
|
>
|
|
82
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
78
83
|
{title && <title>{title}</title>}
|
|
79
84
|
<path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/>
|
|
80
85
|
</svg>);
|
|
@@ -85,10 +90,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
85
90
|
.join(" ")}
|
|
86
91
|
width={width}
|
|
87
92
|
height={height}
|
|
88
|
-
viewBox="0 0
|
|
93
|
+
viewBox="0 0 448 512"
|
|
89
94
|
>
|
|
95
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
90
96
|
{title && <title>{title}</title>}
|
|
91
|
-
<path d="
|
|
97
|
+
<path d="M96 32l0 32L48 64C21.5 64 0 85.5 0 112l0 48 448 0 0-48c0-26.5-21.5-48-48-48l-48 0 0-32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 32L160 64l0-32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192L0 192 0 464c0 26.5 21.5 48 48 48l352 0c26.5 0 48-21.5 48-48l0-272z"/>
|
|
92
98
|
</svg>);
|
|
93
99
|
|
|
94
100
|
case "ui-bed":
|
|
@@ -97,10 +103,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
97
103
|
.join(" ")}
|
|
98
104
|
width={width}
|
|
99
105
|
height={height}
|
|
100
|
-
viewBox="0 0
|
|
106
|
+
viewBox="0 0 640 512"
|
|
101
107
|
>
|
|
108
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
102
109
|
{title && <title>{title}</title>}
|
|
103
|
-
<path d="
|
|
110
|
+
<path d="M32 32c17.7 0 32 14.3 32 32l0 256 224 0 0-160c0-17.7 14.3-32 32-32l224 0c53 0 96 43 96 96l0 224c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32-224 0-32 0L64 416l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32L0 64C0 46.3 14.3 32 32 32zm144 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z"/>
|
|
104
111
|
</svg>);
|
|
105
112
|
|
|
106
113
|
case "ui-flight":
|
|
@@ -109,10 +116,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
109
116
|
.join(" ")}
|
|
110
117
|
width={width}
|
|
111
118
|
height={height}
|
|
112
|
-
viewBox="0 0
|
|
119
|
+
viewBox="0 0 576 512"
|
|
113
120
|
>
|
|
121
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
114
122
|
{title && <title>{title}</title>}
|
|
115
|
-
<path d="
|
|
123
|
+
<path d="M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z"/>
|
|
116
124
|
</svg>);
|
|
117
125
|
|
|
118
126
|
case "ui-transfer":
|
|
@@ -121,10 +129,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
121
129
|
.join(" ")}
|
|
122
130
|
width={width}
|
|
123
131
|
height={height}
|
|
124
|
-
viewBox="0 0
|
|
132
|
+
viewBox="0 0 512 512"
|
|
125
133
|
>
|
|
134
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
126
135
|
{title && <title>{title}</title>}
|
|
127
|
-
<path d="
|
|
136
|
+
<path d="M192 0c-17.7 0-32 14.3-32 32l0 32 0 .2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288L0 432l0 48c0 17.7 14.3 32 32 32l32 0c17.7 0 32-14.3 32-32l0-48 320 0 0 48c0 17.7 14.3 32 32 32l32 0c17.7 0 32-14.3 32-32l0-48 0-144c0-26.7-16.4-49.6-39.6-59.2L437.2 128.3c-12.9-36.8-46.6-62-85.2-64.1l0-.2 0-32c0-17.7-14.3-32-32-32L192 0zM165.4 128l181.2 0c13.6 0 25.7 8.6 30.2 21.4L402.9 224l-293.8 0 26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zM96 288a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm288 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"/>
|
|
128
137
|
</svg>);
|
|
129
138
|
|
|
130
139
|
case "ui-star":
|
|
@@ -133,10 +142,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
133
142
|
.join(" ")}
|
|
134
143
|
width={width}
|
|
135
144
|
height={height}
|
|
136
|
-
viewBox="0 0
|
|
145
|
+
viewBox="0 0 576 512"
|
|
137
146
|
>
|
|
147
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
138
148
|
{title && <title>{title}</title>}
|
|
139
|
-
<path d="
|
|
149
|
+
<path d="M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z"/>
|
|
140
150
|
</svg>);
|
|
141
151
|
|
|
142
152
|
case "ui-halfstar":
|
|
@@ -145,10 +155,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
145
155
|
.join(" ")}
|
|
146
156
|
width={width}
|
|
147
157
|
height={height}
|
|
148
|
-
viewBox="0 0
|
|
158
|
+
viewBox="0 0 576 512"
|
|
149
159
|
>
|
|
160
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
150
161
|
{title && <title>{title}</title>}
|
|
151
|
-
<path d="
|
|
162
|
+
<path d="M288 0c-12.2 .1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8 288 0zM429.9 512c1.1 .1 2.1 .1 3.2 0l-3.2 0z"/>
|
|
152
163
|
</svg>);
|
|
153
164
|
|
|
154
165
|
case "ui-user":
|
|
@@ -157,11 +168,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
157
168
|
.join(" ")}
|
|
158
169
|
width={width}
|
|
159
170
|
height={height}
|
|
160
|
-
viewBox="0 0
|
|
171
|
+
viewBox="0 0 448 512"
|
|
161
172
|
>
|
|
173
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
162
174
|
{title && <title>{title}</title>}
|
|
163
|
-
<path d="
|
|
164
|
-
<path d="M10.42,11.76H7.15A8.5,8.5,0,0,0,0,15.68V20H17.58V15.68A8.5,8.5,0,0,0,10.42,11.76Zm6,7.07H1.17V16a7.31,7.31,0,0,1,6-3.11h3.27a7.31,7.31,0,0,1,6,3.11Z" transform="translate(0 0)" />
|
|
175
|
+
<path d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0z"/>
|
|
165
176
|
</svg>);
|
|
166
177
|
|
|
167
178
|
case "ui-pencil":
|
|
@@ -170,12 +181,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
170
181
|
.join(" ")}
|
|
171
182
|
width={width}
|
|
172
183
|
height={height}
|
|
173
|
-
viewBox="0 0
|
|
184
|
+
viewBox="0 0 512 512"
|
|
174
185
|
>
|
|
186
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
175
187
|
{title && <title>{title}</title>}
|
|
176
|
-
<
|
|
177
|
-
<path d="M11.25,1.43L1,12.01v2.34H3.33L13.59,3.76l-2.34-2.34M11.24,0l3.75,3.75L3.75,15.35H0v-3.75L11.24,0Z" />
|
|
178
|
-
</g>
|
|
188
|
+
<path d="M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1 0 32c0 8.8 7.2 16 16 16l32 0zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z"/>
|
|
179
189
|
</svg>);
|
|
180
190
|
|
|
181
191
|
case "ui-check":
|
|
@@ -184,10 +194,11 @@ const Icon: React.FC<IconProps> = ({
|
|
|
184
194
|
.join(" ")}
|
|
185
195
|
width={width}
|
|
186
196
|
height={height}
|
|
187
|
-
viewBox="0 0
|
|
197
|
+
viewBox="0 0 448 512"
|
|
188
198
|
>
|
|
199
|
+
<HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
|
|
189
200
|
{title && <title>{title}</title>}
|
|
190
|
-
<path
|
|
201
|
+
<path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/>
|
|
191
202
|
</svg>);
|
|
192
203
|
default:
|
|
193
204
|
return null;
|