@qite/tide-booking-component 1.4.105 → 1.4.107

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.
Files changed (97) hide show
  1. package/build/build-cjs/index.js +18288 -20939
  2. package/build/build-cjs/src/qsm/store/qsm-slice.d.ts +2 -1
  3. package/build/build-cjs/src/shared/components/icon.d.ts +1 -0
  4. package/build/build-cjs/src/shared/utils/localization-util.d.ts +4 -0
  5. package/build/build-esm/index.js +18234 -20846
  6. package/build/build-esm/src/qsm/store/qsm-slice.d.ts +2 -1
  7. package/build/build-esm/src/shared/components/icon.d.ts +1 -0
  8. package/build/build-esm/src/shared/utils/localization-util.d.ts +4 -0
  9. package/package.json +2 -2
  10. package/src/booking-product/components/amount-input.tsx +1 -1
  11. package/src/booking-product/components/date-range-picker/calendar.tsx +1 -1
  12. package/src/booking-product/components/dates.tsx +1 -1
  13. package/src/booking-product/components/header.tsx +1 -1
  14. package/src/booking-product/components/rating.tsx +1 -1
  15. package/src/booking-product/components/rooms.tsx +1 -1
  16. package/src/booking-wizard/components/message.tsx +1 -1
  17. package/src/booking-wizard/features/confirmation/confirmation.tsx +1 -1
  18. package/src/booking-wizard/features/flight-options/flight-filter.tsx +1 -1
  19. package/src/booking-wizard/features/flight-options/flight-option-flight.tsx +1 -1
  20. package/src/booking-wizard/features/flight-options/flight-option-modal.tsx +1 -1
  21. package/src/booking-wizard/features/summary/summary.tsx +1 -1
  22. package/src/booking-wizard/features/travelers-form/type-ahead-input.tsx +1 -1
  23. package/src/content/components/accordion.tsx +1 -1
  24. package/src/content/components/contact.tsx +0 -1
  25. package/src/content/components/gallery.tsx +3 -3
  26. package/src/content/components/login.tsx +1 -2
  27. package/src/content/components/personal-contact-form.tsx +1 -1
  28. package/src/content/components/slider.tsx +1 -1
  29. package/src/content/featured-trips/featured-trip-card.tsx +1 -1
  30. package/src/content/features/content-page/content-page-self-contained.tsx +1 -1
  31. package/src/content/footer/index.tsx +1 -1
  32. package/src/content/navbar/index.tsx +1 -1
  33. package/src/qsm/components/QSMContainer/qsm-container.tsx +58 -5
  34. package/src/qsm/components/search-input/index.tsx +1 -1
  35. package/src/qsm/components/search-input-group/index.tsx +13 -2
  36. package/src/qsm/components/travel-input/index.tsx +1 -3
  37. package/src/qsm/components/travel-input-group/index.tsx +1 -1
  38. package/src/qsm/store/qsm-slice.ts +10 -3
  39. package/src/search-results/components/excursions/day-by-day-excursions.tsx +4 -9
  40. package/src/search-results/components/filters/filters.tsx +1 -1
  41. package/src/search-results/components/filters/flight-filters.tsx +1 -1
  42. package/src/search-results/components/flight/flight-results.tsx +1 -1
  43. package/src/search-results/components/flight/flight-selection/independent-flight-option.tsx +1 -1
  44. package/src/search-results/components/flight/flight-selection/independent-flight-selection.tsx +1 -1
  45. package/src/search-results/components/flight/flight-selection/paired-flight-option.tsx +1 -1
  46. package/src/search-results/components/flight/flight-selection/paired-flight-selection.tsx +1 -1
  47. package/src/search-results/components/group-tour/group-tour-card.tsx +1 -1
  48. package/src/search-results/components/hotel/hotel-accommodation-results.tsx +1 -1
  49. package/src/search-results/components/hotel/hotel-card.tsx +1 -1
  50. package/src/search-results/components/itinerary/full-itinerary.tsx +161 -53
  51. package/src/search-results/components/itinerary/index.tsx +32 -8
  52. package/src/search-results/components/round-trip/round-trip-results.tsx +1 -1
  53. package/src/search-results/components/search-results-container/flight-search-results.tsx +1 -1
  54. package/src/search-results/components/search-results-container/search-results-container.tsx +5 -6
  55. package/src/search-results/components/tab-views/index.tsx +1 -1
  56. package/src/search-results/features/flights/flight-search-results-self-contained.tsx +1 -1
  57. package/src/search-results/features/hotels/hotel-flight-search-results-self-contained.tsx +1 -1
  58. package/src/search-results/features/hotels/hotel-search-results-self-contained.tsx +1 -1
  59. package/src/shared/components/flyin/flyin.tsx +1 -1
  60. package/src/shared/components/icon.tsx +349 -88
  61. package/src/shared/translations/ar-SA.json +4 -0
  62. package/src/shared/translations/da-DK.json +4 -0
  63. package/src/shared/translations/de-DE.json +4 -0
  64. package/src/shared/translations/en-GB.json +4 -0
  65. package/src/shared/translations/es-ES.json +4 -0
  66. package/src/shared/translations/fr-BE.json +4 -0
  67. package/src/shared/translations/fr-FR.json +4 -0
  68. package/src/shared/translations/is-IS.json +4 -0
  69. package/src/shared/translations/it-IT.json +4 -0
  70. package/src/shared/translations/ja-JP.json +4 -0
  71. package/src/shared/translations/nl-BE.json +4 -0
  72. package/src/shared/translations/nl-NL.json +4 -0
  73. package/src/shared/translations/no-NO.json +4 -0
  74. package/src/shared/translations/pl-PL.json +4 -0
  75. package/src/shared/translations/pt-PT.json +4 -0
  76. package/src/shared/translations/sv-SE.json +4 -0
  77. package/src/shared/utils/tide-api-utils.ts +2 -2
  78. package/styles/booking-qsm-variables.scss +2 -2
  79. package/styles/booking-search-results-variables.scss +17 -17
  80. package/styles/components/_faq.scss +2 -0
  81. package/styles/components/_flyin.scss +19 -0
  82. package/styles/components/_gallery.scss +5 -2
  83. package/build/build-cjs/src/booking-product/components/icon.d.ts +0 -10
  84. package/build/build-cjs/src/booking-wizard/components/icon.d.ts +0 -10
  85. package/build/build-cjs/src/content/components/icon.d.ts +0 -10
  86. package/build/build-cjs/src/qsm/components/icon.d.ts +0 -10
  87. package/build/build-cjs/src/search-results/components/icon.d.ts +0 -11
  88. package/build/build-esm/src/booking-product/components/icon.d.ts +0 -10
  89. package/build/build-esm/src/booking-wizard/components/icon.d.ts +0 -10
  90. package/build/build-esm/src/content/components/icon.d.ts +0 -10
  91. package/build/build-esm/src/qsm/components/icon.d.ts +0 -10
  92. package/build/build-esm/src/search-results/components/icon.d.ts +0 -11
  93. package/src/booking-product/components/icon.tsx +0 -200
  94. package/src/booking-wizard/components/icon.tsx +0 -398
  95. package/src/content/components/icon.tsx +0 -695
  96. package/src/qsm/components/icon.tsx +0 -354
  97. package/src/search-results/components/icon.tsx +0 -677
@@ -382,5 +382,9 @@
382
382
  "DURATION_DESC": "المدة تنازلياً",
383
383
  "TRAVEL_GROUP": "مجموعة المسافرين",
384
384
  "EXCURSION": "رحلة"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "اليوم",
388
+ "NO_ITEMS": "لا توجد عناصر لهذا اليوم."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "DURATION_DESC": "Varighed faldende",
383
383
  "TRAVEL_GROUP": "Rejseselskab",
384
384
  "EXCURSION": "Udflugt"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dag",
388
+ "NO_ITEMS": "Ingen elementer for denne dag."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Preis",
383
383
  "TRAVEL_GROUP": "Reisegruppe",
384
384
  "EXCURSION": "Ausflug"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Tag",
388
+ "NO_ITEMS": "Keine Elemente für diesen Tag."
385
389
  }
386
390
  }
@@ -386,5 +386,9 @@
386
386
  "ARRIVAL_AIRPORTS": "Arrival airports",
387
387
  "TRAVEL_GROUP": "Travel group",
388
388
  "EXCURSION": "Excursion"
389
+ },
390
+ "ITINERARY": {
391
+ "DAY": "Day",
392
+ "NO_ITEMS": "No items for this day."
389
393
  }
390
394
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Precio",
383
383
  "TRAVEL_GROUP": "Grupo de viaje",
384
384
  "EXCURSION": "Excursión"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Día",
388
+ "NO_ITEMS": "No hay elementos para este día."
385
389
  }
386
390
  }
@@ -386,5 +386,9 @@
386
386
  "PRICE": "Prix",
387
387
  "TRAVEL_GROUP": "Groupe de voyageurs",
388
388
  "EXCURSION": "Excursion"
389
+ },
390
+ "ITINERARY": {
391
+ "DAY": "Jour",
392
+ "NO_ITEMS": "Aucun élément pour ce jour."
389
393
  }
390
394
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Prix",
383
383
  "TRAVEL_GROUP": "Groupe de voyageurs",
384
384
  "EXCURSION": "Excursion"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Jour",
388
+ "NO_ITEMS": "Aucun élément pour ce jour."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Verð",
383
383
  "TRAVEL_GROUP": "Ferðahópur",
384
384
  "EXCURSION": "Útflutningur"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dagur",
388
+ "NO_ITEMS": "Engar upplýsingar fyrir þennan dag."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Prezzo",
383
383
  "TRAVEL_GROUP": "Gruppo di viaggio",
384
384
  "EXCURSION": "Escursione"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Giorno",
388
+ "NO_ITEMS": "Nessun elemento per questo giorno."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "価格",
383
383
  "TRAVEL_GROUP": "旅行グループ",
384
384
  "EXCURSION": "エクスカーション"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "日",
388
+ "NO_ITEMS": "この日のアイテムはありません。"
385
389
  }
386
390
  }
@@ -386,5 +386,9 @@
386
386
  "PRICE": "Prijs",
387
387
  "TRAVEL_GROUP": "Reisgezelschap",
388
388
  "EXCURSION": "Excursie"
389
+ },
390
+ "ITINERARY": {
391
+ "DAY": "Dag",
392
+ "NO_ITEMS": "Geen elementen voor deze dag."
389
393
  }
390
394
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Prijs",
383
383
  "TRAVEL_GROUP": "Reisgezelschap",
384
384
  "EXCURSION": "Excursie"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dag",
388
+ "NO_ITEMS": "Geen elementen voor deze dag."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Pris",
383
383
  "TRAVEL_GROUP": "Reisefølge",
384
384
  "EXCURSION": "Utflukt"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dag",
388
+ "NO_ITEMS": "Ingen elementer for denne dagen."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Cena",
383
383
  "TRAVEL_GROUP": "Grupa podróżnych",
384
384
  "EXCURSION": "Wycieczka"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dzień",
388
+ "NO_ITEMS": "Brak elementów dla tego dnia."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Preço",
383
383
  "TRAVEL_GROUP": "Grupo de viajantes",
384
384
  "EXCURSION": "Excursão"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dia",
388
+ "NO_ITEMS": "Nenhum item para este dia."
385
389
  }
386
390
  }
@@ -382,5 +382,9 @@
382
382
  "PRICE": "Pris",
383
383
  "TRAVEL_GROUP": "Resesällskap",
384
384
  "EXCURSION": "Utflykt"
385
+ },
386
+ "ITINERARY": {
387
+ "DAY": "Dag",
388
+ "NO_ITEMS": "Inga element för denna dag."
385
389
  }
386
390
  }
@@ -3,8 +3,8 @@ import { isNil } from 'lodash';
3
3
  import { ApiSettingsState } from '../types';
4
4
 
5
5
  export const tideConnection = {
6
- host: 'https://localhost:44341',
7
- // host: 'https://preview-tide.tidesoftware.be',
6
+ // host: 'https://localhost:44341',
7
+ host: 'https://preview-tide.tidesoftware.be',
8
8
  apiKey: 'e9b95d79-de4c-41d6-ab7e-3dd429873058',
9
9
  catalogueIds: [1],
10
10
  officeId: 1
@@ -344,7 +344,7 @@
344
344
 
345
345
  //DATEPICKER--DAY
346
346
  --tide-booking-datepicker-day-color: var(--tide-booking-gray-dark);
347
- --tide-booking-datepicker-day-background: var(--tide-booking-gray-xlight);
347
+ --tide-booking-datepicker-day-background: var(--tide-booking-white);
348
348
  --tide-booking-datepicker-day-border: 1.5px solid var(--tide-booking-gray-border-light);
349
349
  --tide-booking-datepicker-day-border-radius: 5px;
350
350
 
@@ -370,7 +370,7 @@
370
370
 
371
371
  //DATEPICKER--DAY--OUTSIDE-MONTH
372
372
  --tide-booking-datepicker-day-color-outside-month: var(--tide-booking-gray-medium);
373
- --tide-booking-datepicker-day-background-outside-month: transparent;
373
+ --tide-booking-datepicker-day-background-outside-month: var(--tide-booking-gray-xlight);
374
374
  --tide-booking-datepicker-day-border-outside-month: 1.5px solid var(--tide-booking-gray-border-light);
375
375
  --tide-booking-datepicker-day-opacity-outside-month: 0.6;
376
376
 
@@ -63,28 +63,28 @@
63
63
  --tide-booking-heading-color: var(--tide-booking-black);
64
64
 
65
65
  //h1
66
- --tide-booking-h1: 40px;
67
- --tide-booking-h1-sm: 56px;
68
- --tide-booking-h1-xl: 56px;
66
+ --tide-booking-h1: 32px;
67
+ --tide-booking-h1-sm: 40px;
68
+ --tide-booking-h1-xl: 40px;
69
69
 
70
70
  //h2
71
- --tide-booking-h2: 32px;
72
- --tide-booking-h2-sm: 40px;
73
- --tide-booking-h2-xl: 40px;
71
+ --tide-booking-h2: 24px;
72
+ --tide-booking-h2-sm: 32px;
73
+ --tide-booking-h2-xl: 32px;
74
74
 
75
75
  //h3
76
- --tide-booking-h3: 24px;
77
- --tide-booking-h3-sm: 32px;
78
- --tide-booking-h3-xl: 32px;
76
+ --tide-booking-h3: 18px;
77
+ --tide-booking-h3-sm: 24px;
78
+ --tide-booking-h3-xl: 24px;
79
79
 
80
80
  //h4
81
- --tide-booking-h4: 18px;
82
- --tide-booking-h4-sm: 20px;
83
- --tide-booking-h4-xl: 20px;
81
+ --tide-booking-h4: 16px;
82
+ --tide-booking-h4-sm: 18px;
83
+ --tide-booking-h4-xl: 18px;
84
84
 
85
85
  //h5
86
- --tide-booking-h5: 18px;
87
- --tide-booking-h5-xl: 20px;
86
+ --tide-booking-h5: 16px;
87
+ --tide-booking-h5-xl: 18px;
88
88
 
89
89
  //h6
90
90
  --tide-booking-h6: 16px;
@@ -377,13 +377,13 @@
377
377
 
378
378
  //DATEPICKER--DAY
379
379
  --tide-booking-datepicker-day-color: var(--tide-booking-gray-dark);
380
- --tide-booking-datepicker-day-background: var(--tide-booking-gray-xlight);
380
+ --tide-booking-datepicker-day-background: var(--tide-booking-white);
381
381
  --tide-booking-datepicker-day-border: 1.5px solid var(--tide-booking-gray-border-light);
382
382
  --tide-booking-datepicker-day-border-radius: 5px;
383
383
 
384
384
  //DATEPICKER--DAY--HOVER
385
385
  --tide-booking-datepicker-day-border-hover: 1.5px solid var(--tide-booking-color-primary);
386
- --tide-booking-datepicker-day-background-hover: var(--tide-booking-gray-xlight);
386
+ --tide-booking-datepicker-day-background-hover: var(--tide-booking-color-primary-fade);
387
387
  --tide-booking-datepicker-day-color-hover: var(--tide-booking-color-primary);
388
388
 
389
389
  //DATEPICKER--DAY--SELECTED
@@ -403,7 +403,7 @@
403
403
 
404
404
  //DATEPICKER--DAY--OUTSIDE-MONTH
405
405
  --tide-booking-datepicker-day-color-outside-month: var(--tide-booking-gray-medium);
406
- --tide-booking-datepicker-day-background-outside-month: transparent;
406
+ --tide-booking-datepicker-day-background-outside-month: var(--tide-booking-gray-xlight);
407
407
  --tide-booking-datepicker-day-border-outside-month: 1.5px solid var(--tide-booking-gray-border-light);
408
408
  --tide-booking-datepicker-day-opacity-outside-month: 0.6;
409
409
 
@@ -3,6 +3,8 @@
3
3
 
4
4
  &__title {
5
5
  margin: 0 0 15px;
6
+ line-height: 1.2;
7
+ font-weight: 700;
6
8
  }
7
9
 
8
10
  &__empty {
@@ -19,6 +19,25 @@
19
19
  pointer-events: auto;
20
20
  }
21
21
 
22
+ &--medium {
23
+ .flyin__panel {
24
+ @include mixins.media-sm {
25
+ width: 100%;
26
+ max-width: 1200px;
27
+ }
28
+
29
+ .search__results__cards {
30
+ @include mixins.media-md {
31
+ grid-template-columns: repeat(2, 1fr);
32
+ }
33
+
34
+ @include mixins.media-lg {
35
+ grid-template-columns: repeat(3, 1fr);
36
+ }
37
+ }
38
+ }
39
+ }
40
+
22
41
  &--large {
23
42
  .flyin__panel {
24
43
  @include mixins.media-sm {
@@ -12,9 +12,12 @@
12
12
  }
13
13
 
14
14
  &__title {
15
- font-size: 1.25rem;
15
+ line-height: 1.2;
16
16
  font-weight: 700;
17
- margin: 0;
17
+ }
18
+
19
+ &__text {
20
+ line-height: 1.5;
18
21
  }
19
22
 
20
23
  &__count {
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- fill?: string;
9
- }
10
- declare const Icon: React.FC<IconProps>;
11
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- }
9
- declare const Icon: React.FC<IconProps>;
10
- export default Icon;
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- interface IconProps {
3
- name: string;
4
- className?: string;
5
- title?: string;
6
- width?: number;
7
- height?: number;
8
- fill?: string;
9
- }
10
- declare const Icon: React.FC<IconProps>;
11
- export default Icon;
@@ -1,200 +0,0 @@
1
- import { isEmpty } from 'lodash';
2
- import React, { useContext } from 'react';
3
- import SettingsContext from '../settings-context';
4
- import HTMLComment from 'react-html-comment';
5
-
6
- interface IconProps {
7
- name: string;
8
- className?: string;
9
- title?: string;
10
- width?: number;
11
- height?: number;
12
- }
13
-
14
- const Icon: React.FC<IconProps> = ({ name, className, title, width, height }) => {
15
- const { icons } = useContext(SettingsContext);
16
-
17
- if (icons) {
18
- return (
19
- <svg className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')} width={width} height={height}>
20
- {title && <title>{title}</title>}
21
- <use href={`${icons}#${name}`}></use>
22
- </svg>
23
- );
24
- }
25
-
26
- switch (name) {
27
- case 'ui-close':
28
- return (
29
- <svg
30
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
31
- width={width}
32
- height={height}
33
- viewBox="0 0 384 512">
34
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
35
- {title && <title>{title}</title>}
36
- <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" />
37
- </svg>
38
- );
39
-
40
- case 'ui-plus':
41
- return (
42
- <svg
43
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
44
- width={width}
45
- height={height}
46
- viewBox="0 0 448 512">
47
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
48
- {title && <title>{title}</title>}
49
- <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" />
50
- </svg>
51
- );
52
-
53
- case 'ui-min':
54
- return (
55
- <svg
56
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
57
- width={width}
58
- height={height}
59
- viewBox="0 0 448 512">
60
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
61
- {title && <title>{title}</title>}
62
- <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" />
63
- </svg>
64
- );
65
-
66
- case 'ui-chevron':
67
- return (
68
- <svg
69
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
70
- width={width}
71
- height={height}
72
- viewBox="0 0 320 512">
73
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
74
- {title && <title>{title}</title>}
75
- <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" />
76
- </svg>
77
- );
78
-
79
- case 'ui-calendar':
80
- return (
81
- <svg
82
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
83
- width={width}
84
- height={height}
85
- viewBox="0 0 448 512">
86
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
87
- {title && <title>{title}</title>}
88
- <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" />
89
- </svg>
90
- );
91
-
92
- case 'ui-bed':
93
- return (
94
- <svg
95
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
96
- width={width}
97
- height={height}
98
- viewBox="0 0 640 512">
99
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
100
- {title && <title>{title}</title>}
101
- <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" />
102
- </svg>
103
- );
104
-
105
- case 'ui-flight':
106
- return (
107
- <svg
108
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
109
- width={width}
110
- height={height}
111
- viewBox="0 0 576 512">
112
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
113
- {title && <title>{title}</title>}
114
- <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" />
115
- </svg>
116
- );
117
-
118
- case 'ui-transfer':
119
- return (
120
- <svg
121
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
122
- width={width}
123
- height={height}
124
- viewBox="0 0 512 512">
125
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
126
- {title && <title>{title}</title>}
127
- <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
- </svg>
129
- );
130
-
131
- case 'ui-star':
132
- return (
133
- <svg
134
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
135
- width={width}
136
- height={height}
137
- viewBox="0 0 576 512">
138
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
139
- {title && <title>{title}</title>}
140
- <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" />
141
- </svg>
142
- );
143
-
144
- case 'ui-halfstar':
145
- return (
146
- <svg
147
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
148
- width={width}
149
- height={height}
150
- viewBox="0 0 576 512">
151
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
152
- {title && <title>{title}</title>}
153
- <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" />
154
- </svg>
155
- );
156
-
157
- case 'ui-user':
158
- return (
159
- <svg
160
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
161
- width={width}
162
- height={height}
163
- viewBox="0 0 448 512">
164
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
165
- {title && <title>{title}</title>}
166
- <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" />
167
- </svg>
168
- );
169
-
170
- case 'ui-pencil':
171
- return (
172
- <svg
173
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
174
- width={width}
175
- height={height}
176
- viewBox="0 0 512 512">
177
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
178
- {title && <title>{title}</title>}
179
- <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" />
180
- </svg>
181
- );
182
-
183
- case 'ui-check':
184
- return (
185
- <svg
186
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
187
- width={width}
188
- height={height}
189
- viewBox="0 0 448 512">
190
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
191
- {title && <title>{title}</title>}
192
- <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" />
193
- </svg>
194
- );
195
- default:
196
- return null;
197
- }
198
- };
199
-
200
- export default Icon;