@qite/tide-booking-component 1.4.122 → 1.4.124

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 (706) hide show
  1. package/.claude/settings.local.json +11 -0
  2. package/.husky/pre-commit +22 -1
  3. package/.prettierignore +32 -0
  4. package/.prettierrc +9 -9
  5. package/.vs/ProjectSettings.json +3 -3
  6. package/.vs/VSWorkspaceState.json +5 -5
  7. package/MEMORY.md +97 -0
  8. package/NEXTSTEPS.md +94 -0
  9. package/README.md +26 -24
  10. package/package.json +10 -1
  11. package/rollup.config.js +16 -16
  12. package/src/booking-product/components/age-select.tsx +35 -35
  13. package/src/booking-product/components/amount-input.tsx +51 -51
  14. package/src/booking-product/components/date-range-picker/calendar-day.tsx +46 -46
  15. package/src/booking-product/components/date-range-picker/calendar.tsx +155 -155
  16. package/src/booking-product/components/date-range-picker/index.tsx +185 -185
  17. package/src/booking-product/components/dates.tsx +153 -153
  18. package/src/booking-product/components/footer.tsx +54 -54
  19. package/src/booking-product/components/header.tsx +58 -57
  20. package/src/booking-product/components/list-view.tsx +54 -54
  21. package/src/booking-product/components/product.tsx +447 -379
  22. package/src/booking-product/components/rating.tsx +21 -21
  23. package/src/booking-product/components/rooms.tsx +192 -171
  24. package/src/booking-product/constants.ts +1 -1
  25. package/src/booking-product/index.tsx +21 -21
  26. package/src/booking-product/settings-context.ts +16 -16
  27. package/src/booking-product/types.ts +68 -30
  28. package/src/booking-product/utils/api.ts +26 -26
  29. package/src/booking-product/utils/price.ts +28 -28
  30. package/src/booking-wizard/api-settings-slice.ts +24 -24
  31. package/src/booking-wizard/components/labeled-input.tsx +56 -56
  32. package/src/booking-wizard/components/labeled-select.tsx +54 -54
  33. package/src/booking-wizard/components/message.tsx +21 -21
  34. package/src/booking-wizard/components/multi-range-filter.tsx +99 -99
  35. package/src/booking-wizard/components/phone-input.tsx +146 -146
  36. package/src/booking-wizard/components/print-offer-button.tsx +53 -53
  37. package/src/booking-wizard/components/step-indicator.tsx +36 -36
  38. package/src/booking-wizard/components/step-route.tsx +51 -51
  39. package/src/booking-wizard/declarations.d.ts +4 -4
  40. package/src/booking-wizard/features/booking/api.ts +44 -44
  41. package/src/booking-wizard/features/booking/booking-self-contained.tsx +364 -318
  42. package/src/booking-wizard/features/booking/booking-slice.ts +634 -634
  43. package/src/booking-wizard/features/booking/booking.tsx +388 -344
  44. package/src/booking-wizard/features/booking/constants.ts +16 -16
  45. package/src/booking-wizard/features/booking/selectors.ts +411 -411
  46. package/src/booking-wizard/features/confirmation/confirmation.tsx +46 -46
  47. package/src/booking-wizard/features/error/error.tsx +71 -71
  48. package/src/booking-wizard/features/flight-options/flight-filter.tsx +371 -371
  49. package/src/booking-wizard/features/flight-options/flight-option-flight.tsx +354 -354
  50. package/src/booking-wizard/features/flight-options/flight-option-modal.tsx +211 -211
  51. package/src/booking-wizard/features/flight-options/flight-option.tsx +57 -57
  52. package/src/booking-wizard/features/flight-options/flight-utils.ts +423 -423
  53. package/src/booking-wizard/features/flight-options/index.tsx +170 -170
  54. package/src/booking-wizard/features/price-details/price-details-api.ts +20 -20
  55. package/src/booking-wizard/features/price-details/price-details-slice.ts +79 -79
  56. package/src/booking-wizard/features/price-details/selectors.ts +118 -118
  57. package/src/booking-wizard/features/price-details/util.ts +115 -115
  58. package/src/booking-wizard/features/product-options/no-options.tsx +18 -18
  59. package/src/booking-wizard/features/product-options/none-option.tsx +73 -73
  60. package/src/booking-wizard/features/product-options/option-booking-airline-group.tsx +53 -53
  61. package/src/booking-wizard/features/product-options/option-booking-group.tsx +152 -152
  62. package/src/booking-wizard/features/product-options/option-item.tsx +236 -236
  63. package/src/booking-wizard/features/product-options/option-pax-card.tsx +159 -159
  64. package/src/booking-wizard/features/product-options/option-pax-group.tsx +122 -122
  65. package/src/booking-wizard/features/product-options/option-room.tsx +226 -226
  66. package/src/booking-wizard/features/product-options/option-unit-group.tsx +138 -138
  67. package/src/booking-wizard/features/product-options/option-units-card.tsx +148 -148
  68. package/src/booking-wizard/features/product-options/options-form.tsx +382 -382
  69. package/src/booking-wizard/features/room-options/index.tsx +132 -132
  70. package/src/booking-wizard/features/room-options/room-utils.ts +154 -154
  71. package/src/booking-wizard/features/room-options/room.tsx +123 -123
  72. package/src/booking-wizard/features/room-options/traveler-rooms.tsx +64 -64
  73. package/src/booking-wizard/features/sidebar/index.tsx +89 -89
  74. package/src/booking-wizard/features/sidebar/sidebar-flight.tsx +66 -66
  75. package/src/booking-wizard/features/sidebar/sidebar-util.ts +143 -143
  76. package/src/booking-wizard/features/sidebar/sidebar.tsx +349 -349
  77. package/src/booking-wizard/features/summary/summary-booking-option-pax.tsx +23 -23
  78. package/src/booking-wizard/features/summary/summary-booking-option-unit.tsx +23 -23
  79. package/src/booking-wizard/features/summary/summary-flight.tsx +36 -36
  80. package/src/booking-wizard/features/summary/summary-per-booking-option-group.tsx +60 -60
  81. package/src/booking-wizard/features/summary/summary-per-pax-option-group.tsx +56 -56
  82. package/src/booking-wizard/features/summary/summary-per-unit-option-group.tsx +58 -58
  83. package/src/booking-wizard/features/summary/summary-slice.ts +27 -27
  84. package/src/booking-wizard/features/summary/summary.tsx +19 -3
  85. package/src/booking-wizard/features/travelers-form/controls/gender-control.tsx +60 -60
  86. package/src/booking-wizard/features/travelers-form/travelers-form-slice.ts +157 -157
  87. package/src/booking-wizard/features/travelers-form/travelers-form-util.ts +10 -10
  88. package/src/booking-wizard/features/travelers-form/travelers-form.tsx +181 -175
  89. package/src/booking-wizard/features/travelers-form/type-ahead-input.tsx +85 -85
  90. package/src/booking-wizard/features/travelers-form/validate-form.ts +178 -178
  91. package/src/booking-wizard/index.tsx +27 -27
  92. package/src/booking-wizard/settings-context.ts +64 -64
  93. package/src/booking-wizard/store.ts +26 -26
  94. package/src/booking-wizard/types.ts +17 -0
  95. package/src/booking-wizard/use-offer-printer.ts +108 -108
  96. package/src/content/components/LanguageSwitcher.tsx +158 -158
  97. package/src/content/components/accordion.tsx +30 -30
  98. package/src/content/components/breadcrumb.tsx +67 -67
  99. package/src/content/components/contact.tsx +210 -210
  100. package/src/content/components/faq.tsx +42 -42
  101. package/src/content/components/gallery.tsx +153 -153
  102. package/src/content/components/image-with-text.tsx +119 -119
  103. package/src/content/components/login.tsx +161 -161
  104. package/src/content/components/personal-contact-form.tsx +809 -809
  105. package/src/content/components/slider.tsx +237 -237
  106. package/src/content/error/error.tsx +27 -27
  107. package/src/content/featured-trips/featured-trip-card.tsx +48 -48
  108. package/src/content/featured-trips/index.tsx +19 -19
  109. package/src/content/featured-trips/types.ts +13 -13
  110. package/src/content/features/content-page/content-page-self-contained.tsx +895 -895
  111. package/src/content/footer/index.tsx +159 -159
  112. package/src/content/footer/types.ts +36 -36
  113. package/src/content/header/index.tsx +43 -43
  114. package/src/content/header/types.ts +26 -26
  115. package/src/content/image-card-grid/index.tsx +34 -34
  116. package/src/content/image-card-grid/types.ts +13 -13
  117. package/src/content/image-with-text-section/card.tsx +58 -58
  118. package/src/content/image-with-text-section/index.tsx +22 -22
  119. package/src/content/image-with-text-section/types.ts +20 -20
  120. package/src/content/login/confirm-component.tsx +149 -149
  121. package/src/content/login/index.tsx +70 -70
  122. package/src/content/login/login-component.tsx +159 -159
  123. package/src/content/login/login-services.ts +109 -109
  124. package/src/content/login/reset-password-component.tsx +191 -191
  125. package/src/content/login/types.ts +29 -29
  126. package/src/content/navbar/index.tsx +354 -354
  127. package/src/content/navbar/placeholderData.tsx +173 -173
  128. package/src/content/navbar/types.ts +43 -43
  129. package/src/index.ts +46 -46
  130. package/src/qsm/components/QSMContainer/qsm-container.tsx +671 -671
  131. package/src/qsm/components/date-picker/index.tsx +152 -152
  132. package/src/qsm/components/date-range-picker/calendar-day.tsx +49 -49
  133. package/src/qsm/components/date-range-picker/calendar.tsx +211 -211
  134. package/src/qsm/components/date-range-picker/index.tsx +404 -404
  135. package/src/qsm/components/double-search-input-group/index.tsx +78 -78
  136. package/src/qsm/components/item-picker/index.tsx +65 -65
  137. package/src/qsm/components/mobile-filter-modal/index.tsx +321 -321
  138. package/src/qsm/components/search-input/index.tsx +91 -91
  139. package/src/qsm/components/search-input-group/index.tsx +209 -209
  140. package/src/qsm/components/travel-class-picker/index.tsx +28 -28
  141. package/src/qsm/components/travel-input/index.tsx +241 -241
  142. package/src/qsm/components/travel-input-group/index.tsx +114 -114
  143. package/src/qsm/components/travel-nationality-picker/index.tsx +28 -28
  144. package/src/qsm/components/travel-type-picker/index.tsx +28 -28
  145. package/src/qsm/index.tsx +26 -26
  146. package/src/qsm/qsm-configuration-context.ts +31 -31
  147. package/src/qsm/store/qsm-slice.ts +282 -282
  148. package/src/qsm/store/qsm-store.ts +13 -13
  149. package/src/qsm/types.ts +110 -110
  150. package/src/search-results/components/book-packaging-entry/index.tsx +266 -266
  151. package/src/search-results/components/book-packaging-entry/wl-sidebar.tsx +173 -173
  152. package/src/search-results/components/excursions/day-by-day-excursions.tsx +168 -168
  153. package/src/search-results/components/excursions/excursion-details.tsx +340 -340
  154. package/src/search-results/components/excursions/excursion-results.tsx +186 -186
  155. package/src/search-results/components/filters/filters.tsx +229 -229
  156. package/src/search-results/components/filters/flight-filters.tsx +671 -671
  157. package/src/search-results/components/flight/flight-banner.tsx +35 -35
  158. package/src/search-results/components/flight/flight-card.tsx +38 -38
  159. package/src/search-results/components/flight/flight-leg.tsx +61 -61
  160. package/src/search-results/components/flight/flight-path.tsx +23 -23
  161. package/src/search-results/components/flight/flight-results.tsx +208 -208
  162. package/src/search-results/components/flight/flight-search-context/index.tsx +628 -628
  163. package/src/search-results/components/flight/flight-selection/independent-flight-option.tsx +168 -168
  164. package/src/search-results/components/flight/flight-selection/independent-flight-selection.tsx +184 -184
  165. package/src/search-results/components/flight/flight-selection/index.tsx +19 -19
  166. package/src/search-results/components/flight/flight-selection/paired-flight-option.tsx +255 -255
  167. package/src/search-results/components/flight/flight-selection/paired-flight-selection.tsx +38 -38
  168. package/src/search-results/components/group-tour/group-tour-card.tsx +105 -105
  169. package/src/search-results/components/group-tour/group-tour-results.tsx +62 -62
  170. package/src/search-results/components/hotel/hotel-accommodation-results.tsx +244 -244
  171. package/src/search-results/components/hotel/hotel-card.tsx +110 -110
  172. package/src/search-results/components/item-picker/index.tsx +81 -81
  173. package/src/search-results/components/itinerary/full-itinerary.tsx +374 -374
  174. package/src/search-results/components/itinerary/index.tsx +437 -437
  175. package/src/search-results/components/multi-range-filter.tsx +104 -104
  176. package/src/search-results/components/round-trip/round-trip-results.tsx +199 -199
  177. package/src/search-results/components/search-results-container/flight-search-results.tsx +137 -137
  178. package/src/search-results/components/search-results-container/search-results-container.tsx +1764 -1764
  179. package/src/search-results/components/spinner/spinner.tsx +24 -24
  180. package/src/search-results/components/tab-views/index.tsx +53 -53
  181. package/src/search-results/features/flights/flight-search-results-self-contained.tsx +294 -294
  182. package/src/search-results/features/hotels/hotel-flight-search-results-self-contained.tsx +143 -143
  183. package/src/search-results/features/hotels/hotel-search-results-self-contained.tsx +220 -220
  184. package/src/search-results/features/roundtrips/roundtrip-search-results-self-contained.tsx +65 -65
  185. package/src/search-results/index.tsx +25 -25
  186. package/src/search-results/search-results-configuration-context.ts +6 -6
  187. package/src/search-results/store/search-results-selectors.ts +84 -84
  188. package/src/search-results/store/search-results-slice.ts +351 -351
  189. package/src/search-results/store/search-results-store.ts +13 -13
  190. package/src/search-results/types.ts +266 -266
  191. package/src/search-results/utils/flight-utils.ts +98 -98
  192. package/src/search-results/utils/packaging-utils.ts +75 -75
  193. package/src/search-results/utils/query-utils.ts +153 -153
  194. package/src/search-results/utils/search-results-utils.ts +538 -538
  195. package/src/shared/booking/booking-panel.tsx +25 -25
  196. package/src/shared/booking/product-card.tsx +23 -23
  197. package/src/shared/booking/shared-confirmation.tsx +105 -105
  198. package/src/shared/booking/shared-sidebar.tsx +432 -432
  199. package/src/shared/booking/step-indicators.tsx +30 -30
  200. package/src/shared/booking/summary.tsx +382 -382
  201. package/src/shared/booking/travelers-form.tsx +874 -874
  202. package/src/shared/components/flyin/accommodation-flyin.tsx +424 -424
  203. package/src/shared/components/flyin/flights-flyin.tsx +508 -508
  204. package/src/shared/components/flyin/flyin.tsx +241 -241
  205. package/src/shared/components/flyin/group-tour-flyin.tsx +294 -294
  206. package/src/shared/components/flyin/packaging-flights-flyin.tsx +171 -171
  207. package/src/shared/components/icon.tsx +1114 -1114
  208. package/src/shared/components/loader.tsx +16 -16
  209. package/src/shared/translations/ar-SA.json +398 -398
  210. package/src/shared/translations/da-DK.json +398 -398
  211. package/src/shared/translations/de-DE.json +398 -398
  212. package/src/shared/translations/en-GB.json +402 -402
  213. package/src/shared/translations/es-ES.json +398 -398
  214. package/src/shared/translations/fr-BE.json +402 -402
  215. package/src/shared/translations/fr-FR.json +398 -398
  216. package/src/shared/translations/is-IS.json +398 -398
  217. package/src/shared/translations/it-IT.json +398 -398
  218. package/src/shared/translations/ja-JP.json +398 -398
  219. package/src/shared/translations/nl-BE.json +402 -402
  220. package/src/shared/translations/nl-NL.json +398 -398
  221. package/src/shared/translations/no-NO.json +398 -398
  222. package/src/shared/translations/pl-PL.json +398 -398
  223. package/src/shared/translations/pt-PT.json +398 -398
  224. package/src/shared/translations/sv-SE.json +398 -398
  225. package/src/shared/types.ts +31 -31
  226. package/src/shared/utils/booking-summary.tsx +57 -57
  227. package/src/shared/utils/class-util.ts +7 -7
  228. package/src/shared/utils/localization-util.ts +316 -301
  229. package/src/shared/utils/query-string-util.ts +91 -91
  230. package/src/shared/utils/tide-api-utils.ts +42 -42
  231. package/src/shared/utils/use-media-query-util.ts +19 -19
  232. package/styles/abstracts/_mixins.scss +74 -74
  233. package/styles/abstracts/_variables.scss +57 -57
  234. package/styles/base/_fonts.scss +2 -2
  235. package/styles/base/_normalize.scss +227 -227
  236. package/styles/base/_typography.scss +35 -35
  237. package/styles/booking-joker-variables.scss +596 -596
  238. package/styles/booking-product-variables.scss +330 -330
  239. package/styles/booking-product.scss +438 -438
  240. package/styles/booking-qsm-variables.scss +501 -501
  241. package/styles/booking-qsm.scss +52 -52
  242. package/styles/booking-search-results-variables.scss +728 -728
  243. package/styles/booking-search-results.scss +53 -53
  244. package/styles/booking-wizard-variables.scss +603 -603
  245. package/styles/booking-wizard.scss +61 -61
  246. package/styles/components/_accordion.scss +67 -67
  247. package/styles/components/_animations.scss +39 -39
  248. package/styles/components/_base.scss +107 -107
  249. package/styles/components/_booking.scss +906 -906
  250. package/styles/components/_breadcrumb.scss +92 -92
  251. package/styles/components/_button.scss +238 -238
  252. package/styles/components/_checkbox.scss +230 -230
  253. package/styles/components/_contact.scss +255 -239
  254. package/styles/components/_content.scss +336 -336
  255. package/styles/components/_cta.scss +238 -238
  256. package/styles/components/_date-list.scss +41 -41
  257. package/styles/components/_date-range-picker.scss +223 -223
  258. package/styles/components/_decrement-increment.scss +35 -35
  259. package/styles/components/_dropdown.scss +77 -77
  260. package/styles/components/_error.scss +50 -50
  261. package/styles/components/_faq.scss +30 -30
  262. package/styles/components/_flight-option.scss +1432 -1432
  263. package/styles/components/_flyin.scss +830 -830
  264. package/styles/components/_footer.scss +135 -135
  265. package/styles/components/_form.scss +1693 -1693
  266. package/styles/components/_gallery.scss +317 -317
  267. package/styles/components/_header.scss +113 -113
  268. package/styles/components/_image-with-text.scss +206 -206
  269. package/styles/components/_img-slider.scss +175 -175
  270. package/styles/components/_info-message.scss +75 -75
  271. package/styles/components/_input.scss +35 -35
  272. package/styles/components/_list.scss +185 -185
  273. package/styles/components/_loader.scss +152 -152
  274. package/styles/components/_login.scss +140 -140
  275. package/styles/components/_mixins.scss +579 -579
  276. package/styles/components/_navbar.scss +765 -765
  277. package/styles/components/_passenger-picker.scss +306 -306
  278. package/styles/components/_phone-input.scss +8 -8
  279. package/styles/components/_placeholders.scss +165 -165
  280. package/styles/components/_pricing-summary.scss +163 -163
  281. package/styles/components/_qsm.scss +17 -17
  282. package/styles/components/_radiobutton.scss +170 -170
  283. package/styles/components/_search.scss +2089 -2089
  284. package/styles/components/_select-wrapper.scss +81 -81
  285. package/styles/components/_slider.scss +128 -128
  286. package/styles/components/_spinner.scss +29 -29
  287. package/styles/components/_step-indicators.scss +187 -187
  288. package/styles/components/_table.scss +81 -81
  289. package/styles/components/_tree.scss +648 -648
  290. package/styles/components/_typeahead.scss +275 -275
  291. package/styles/components/_variables.scss +89 -89
  292. package/styles/content-blocks-variables.scss +507 -507
  293. package/styles/content-blocks.scss +65 -65
  294. package/styles/font.scss +2 -2
  295. package/styles/qsm/_calendar.scss +274 -274
  296. package/styles/qsm/_qsm.scss +1097 -1097
  297. package/styles/search.scss +1200 -1200
  298. package/tsconfig.json +24 -24
  299. package/build/build-cjs/index.js +0 -57386
  300. package/build/build-cjs/src/booking-product/components/age-select.d.ts +0 -8
  301. package/build/build-cjs/src/booking-product/components/amount-input.d.ts +0 -10
  302. package/build/build-cjs/src/booking-product/components/date-range-picker/calendar-day.d.ts +0 -13
  303. package/build/build-cjs/src/booking-product/components/date-range-picker/calendar.d.ts +0 -19
  304. package/build/build-cjs/src/booking-product/components/date-range-picker/index.d.ts +0 -22
  305. package/build/build-cjs/src/booking-product/components/dates.d.ts +0 -14
  306. package/build/build-cjs/src/booking-product/components/footer.d.ts +0 -10
  307. package/build/build-cjs/src/booking-product/components/header.d.ts +0 -11
  308. package/build/build-cjs/src/booking-product/components/list-view.d.ts +0 -8
  309. package/build/build-cjs/src/booking-product/components/product.d.ts +0 -9
  310. package/build/build-cjs/src/booking-product/components/rating.d.ts +0 -6
  311. package/build/build-cjs/src/booking-product/components/rooms.d.ts +0 -10
  312. package/build/build-cjs/src/booking-product/constants.d.ts +0 -1
  313. package/build/build-cjs/src/booking-product/index.d.ts +0 -10
  314. package/build/build-cjs/src/booking-product/settings-context.d.ts +0 -5
  315. package/build/build-cjs/src/booking-product/types.d.ts +0 -27
  316. package/build/build-cjs/src/booking-product/utils/api.d.ts +0 -16
  317. package/build/build-cjs/src/booking-product/utils/price.d.ts +0 -10
  318. package/build/build-cjs/src/booking-wizard/api-settings-slice.d.ts +0 -5
  319. package/build/build-cjs/src/booking-wizard/components/labeled-input.d.ts +0 -18
  320. package/build/build-cjs/src/booking-wizard/components/labeled-select.d.ts +0 -21
  321. package/build/build-cjs/src/booking-wizard/components/message.d.ts +0 -9
  322. package/build/build-cjs/src/booking-wizard/components/multi-range-filter.d.ts +0 -11
  323. package/build/build-cjs/src/booking-wizard/components/phone-input.d.ts +0 -17
  324. package/build/build-cjs/src/booking-wizard/components/print-offer-button.d.ts +0 -17
  325. package/build/build-cjs/src/booking-wizard/components/step-indicator.d.ts +0 -6
  326. package/build/build-cjs/src/booking-wizard/components/step-route.d.ts +0 -8
  327. package/build/build-cjs/src/booking-wizard/features/booking/api.d.ts +0 -30
  328. package/build/build-cjs/src/booking-wizard/features/booking/booking-self-contained.d.ts +0 -8
  329. package/build/build-cjs/src/booking-wizard/features/booking/booking-slice.d.ts +0 -121
  330. package/build/build-cjs/src/booking-wizard/features/booking/booking.d.ts +0 -8
  331. package/build/build-cjs/src/booking-wizard/features/booking/constants.d.ts +0 -15
  332. package/build/build-cjs/src/booking-wizard/features/booking/selectors.d.ts +0 -803
  333. package/build/build-cjs/src/booking-wizard/features/confirmation/confirmation.d.ts +0 -4
  334. package/build/build-cjs/src/booking-wizard/features/error/error.d.ts +0 -4
  335. package/build/build-cjs/src/booking-wizard/features/flight-options/flight-filter.d.ts +0 -9
  336. package/build/build-cjs/src/booking-wizard/features/flight-options/flight-option-flight.d.ts +0 -8
  337. package/build/build-cjs/src/booking-wizard/features/flight-options/flight-option-modal.d.ts +0 -3
  338. package/build/build-cjs/src/booking-wizard/features/flight-options/flight-option.d.ts +0 -10
  339. package/build/build-cjs/src/booking-wizard/features/flight-options/flight-utils.d.ts +0 -13
  340. package/build/build-cjs/src/booking-wizard/features/flight-options/index.d.ts +0 -4
  341. package/build/build-cjs/src/booking-wizard/features/price-details/price-details-api.d.ts +0 -11
  342. package/build/build-cjs/src/booking-wizard/features/price-details/price-details-slice.d.ts +0 -28
  343. package/build/build-cjs/src/booking-wizard/features/price-details/selectors.d.ts +0 -393
  344. package/build/build-cjs/src/booking-wizard/features/price-details/util.d.ts +0 -2
  345. package/build/build-cjs/src/booking-wizard/features/product-options/no-options.d.ts +0 -3
  346. package/build/build-cjs/src/booking-wizard/features/product-options/none-option.d.ts +0 -9
  347. package/build/build-cjs/src/booking-wizard/features/product-options/option-booking-airline-group.d.ts +0 -8
  348. package/build/build-cjs/src/booking-wizard/features/product-options/option-booking-group.d.ts +0 -12
  349. package/build/build-cjs/src/booking-wizard/features/product-options/option-item.d.ts +0 -11
  350. package/build/build-cjs/src/booking-wizard/features/product-options/option-pax-card.d.ts +0 -10
  351. package/build/build-cjs/src/booking-wizard/features/product-options/option-pax-group.d.ts +0 -13
  352. package/build/build-cjs/src/booking-wizard/features/product-options/option-room.d.ts +0 -11
  353. package/build/build-cjs/src/booking-wizard/features/product-options/option-unit-group.d.ts +0 -13
  354. package/build/build-cjs/src/booking-wizard/features/product-options/option-units-card.d.ts +0 -9
  355. package/build/build-cjs/src/booking-wizard/features/product-options/options-form.d.ts +0 -4
  356. package/build/build-cjs/src/booking-wizard/features/room-options/index.d.ts +0 -4
  357. package/build/build-cjs/src/booking-wizard/features/room-options/room-utils.d.ts +0 -22
  358. package/build/build-cjs/src/booking-wizard/features/room-options/room.d.ts +0 -12
  359. package/build/build-cjs/src/booking-wizard/features/room-options/traveler-rooms.d.ts +0 -9
  360. package/build/build-cjs/src/booking-wizard/features/sidebar/index.d.ts +0 -7
  361. package/build/build-cjs/src/booking-wizard/features/sidebar/sidebar-flight.d.ts +0 -9
  362. package/build/build-cjs/src/booking-wizard/features/sidebar/sidebar-util.d.ts +0 -16
  363. package/build/build-cjs/src/booking-wizard/features/sidebar/sidebar.d.ts +0 -0
  364. package/build/build-cjs/src/booking-wizard/features/summary/summary-booking-option-pax.d.ts +0 -7
  365. package/build/build-cjs/src/booking-wizard/features/summary/summary-booking-option-unit.d.ts +0 -7
  366. package/build/build-cjs/src/booking-wizard/features/summary/summary-flight.d.ts +0 -8
  367. package/build/build-cjs/src/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +0 -7
  368. package/build/build-cjs/src/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +0 -7
  369. package/build/build-cjs/src/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +0 -7
  370. package/build/build-cjs/src/booking-wizard/features/summary/summary-slice.d.ts +0 -8
  371. package/build/build-cjs/src/booking-wizard/features/summary/summary.d.ts +0 -4
  372. package/build/build-cjs/src/booking-wizard/features/travelers-form/controls/gender-control.d.ts +0 -5
  373. package/build/build-cjs/src/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +0 -104
  374. package/build/build-cjs/src/booking-wizard/features/travelers-form/travelers-form-util.d.ts +0 -7
  375. package/build/build-cjs/src/booking-wizard/features/travelers-form/travelers-form.d.ts +0 -3
  376. package/build/build-cjs/src/booking-wizard/features/travelers-form/type-ahead-input.d.ts +0 -16
  377. package/build/build-cjs/src/booking-wizard/features/travelers-form/validate-form.d.ts +0 -11
  378. package/build/build-cjs/src/booking-wizard/index.d.ts +0 -12
  379. package/build/build-cjs/src/booking-wizard/settings-context.d.ts +0 -5
  380. package/build/build-cjs/src/booking-wizard/store.d.ts +0 -44
  381. package/build/build-cjs/src/booking-wizard/types.d.ts +0 -301
  382. package/build/build-cjs/src/booking-wizard/use-offer-printer.d.ts +0 -13
  383. package/build/build-cjs/src/content/components/LanguageSwitcher.d.ts +0 -12
  384. package/build/build-cjs/src/content/components/accordion.d.ts +0 -9
  385. package/build/build-cjs/src/content/components/breadcrumb.d.ts +0 -14
  386. package/build/build-cjs/src/content/components/contact.d.ts +0 -3
  387. package/build/build-cjs/src/content/components/faq.d.ts +0 -11
  388. package/build/build-cjs/src/content/components/gallery.d.ts +0 -13
  389. package/build/build-cjs/src/content/components/image-with-text.d.ts +0 -29
  390. package/build/build-cjs/src/content/components/login.d.ts +0 -3
  391. package/build/build-cjs/src/content/components/personal-contact-form.d.ts +0 -3
  392. package/build/build-cjs/src/content/components/slider.d.ts +0 -10
  393. package/build/build-cjs/src/content/error/error.d.ts +0 -6
  394. package/build/build-cjs/src/content/featured-trips/featured-trip-card.d.ts +0 -4
  395. package/build/build-cjs/src/content/featured-trips/index.d.ts +0 -4
  396. package/build/build-cjs/src/content/featured-trips/types.d.ts +0 -12
  397. package/build/build-cjs/src/content/features/content-page/content-page-self-contained.d.ts +0 -6
  398. package/build/build-cjs/src/content/footer/index.d.ts +0 -4
  399. package/build/build-cjs/src/content/footer/types.d.ts +0 -27
  400. package/build/build-cjs/src/content/header/index.d.ts +0 -4
  401. package/build/build-cjs/src/content/header/types.d.ts +0 -25
  402. package/build/build-cjs/src/content/image-card-grid/index.d.ts +0 -4
  403. package/build/build-cjs/src/content/image-card-grid/types.d.ts +0 -12
  404. package/build/build-cjs/src/content/image-with-text-section/card.d.ts +0 -4
  405. package/build/build-cjs/src/content/image-with-text-section/index.d.ts +0 -4
  406. package/build/build-cjs/src/content/image-with-text-section/types.d.ts +0 -19
  407. package/build/build-cjs/src/content/login/confirm-component.d.ts +0 -4
  408. package/build/build-cjs/src/content/login/index.d.ts +0 -4
  409. package/build/build-cjs/src/content/login/login-component.d.ts +0 -4
  410. package/build/build-cjs/src/content/login/login-services.d.ts +0 -11
  411. package/build/build-cjs/src/content/login/reset-password-component.d.ts +0 -4
  412. package/build/build-cjs/src/content/login/types.d.ts +0 -24
  413. package/build/build-cjs/src/content/navbar/index.d.ts +0 -4
  414. package/build/build-cjs/src/content/navbar/placeholderData.d.ts +0 -12
  415. package/build/build-cjs/src/content/navbar/types.d.ts +0 -32
  416. package/build/build-cjs/src/index.d.ts +0 -44
  417. package/build/build-cjs/src/qsm/components/QSMContainer/qsm-container.d.ts +0 -3
  418. package/build/build-cjs/src/qsm/components/date-picker/index.d.ts +0 -3
  419. package/build/build-cjs/src/qsm/components/date-range-picker/calendar-day.d.ts +0 -12
  420. package/build/build-cjs/src/qsm/components/date-range-picker/calendar.d.ts +0 -24
  421. package/build/build-cjs/src/qsm/components/date-range-picker/index.d.ts +0 -10
  422. package/build/build-cjs/src/qsm/components/double-search-input-group/index.d.ts +0 -8
  423. package/build/build-cjs/src/qsm/components/item-picker/index.d.ts +0 -13
  424. package/build/build-cjs/src/qsm/components/mobile-filter-modal/index.d.ts +0 -3
  425. package/build/build-cjs/src/qsm/components/search-input/index.d.ts +0 -15
  426. package/build/build-cjs/src/qsm/components/search-input-group/index.d.ts +0 -13
  427. package/build/build-cjs/src/qsm/components/travel-class-picker/index.d.ts +0 -3
  428. package/build/build-cjs/src/qsm/components/travel-input/index.d.ts +0 -3
  429. package/build/build-cjs/src/qsm/components/travel-input-group/index.d.ts +0 -3
  430. package/build/build-cjs/src/qsm/components/travel-nationality-picker/index.d.ts +0 -3
  431. package/build/build-cjs/src/qsm/components/travel-type-picker/index.d.ts +0 -3
  432. package/build/build-cjs/src/qsm/index.d.ts +0 -7
  433. package/build/build-cjs/src/qsm/qsm-configuration-context.d.ts +0 -4
  434. package/build/build-cjs/src/qsm/store/qsm-slice.d.ts +0 -127
  435. package/build/build-cjs/src/qsm/store/qsm-store.d.ts +0 -23
  436. package/build/build-cjs/src/qsm/types.d.ts +0 -82
  437. package/build/build-cjs/src/search-results/components/book-packaging-entry/index.d.ts +0 -9
  438. package/build/build-cjs/src/search-results/components/book-packaging-entry/wl-sidebar.d.ts +0 -9
  439. package/build/build-cjs/src/search-results/components/excursions/day-by-day-excursions.d.ts +0 -4
  440. package/build/build-cjs/src/search-results/components/excursions/excursion-details.d.ts +0 -3
  441. package/build/build-cjs/src/search-results/components/excursions/excursion-results.d.ts +0 -8
  442. package/build/build-cjs/src/search-results/components/filters/filters.d.ts +0 -13
  443. package/build/build-cjs/src/search-results/components/filters/flight-filters.d.ts +0 -8
  444. package/build/build-cjs/src/search-results/components/flight/flight-banner.d.ts +0 -8
  445. package/build/build-cjs/src/search-results/components/flight/flight-card.d.ts +0 -7
  446. package/build/build-cjs/src/search-results/components/flight/flight-leg.d.ts +0 -7
  447. package/build/build-cjs/src/search-results/components/flight/flight-path.d.ts +0 -6
  448. package/build/build-cjs/src/search-results/components/flight/flight-results.d.ts +0 -8
  449. package/build/build-cjs/src/search-results/components/flight/flight-search-context/index.d.ts +0 -39
  450. package/build/build-cjs/src/search-results/components/flight/flight-selection/independent-flight-option.d.ts +0 -14
  451. package/build/build-cjs/src/search-results/components/flight/flight-selection/independent-flight-selection.d.ts +0 -7
  452. package/build/build-cjs/src/search-results/components/flight/flight-selection/index.d.ts +0 -8
  453. package/build/build-cjs/src/search-results/components/flight/flight-selection/paired-flight-option.d.ts +0 -7
  454. package/build/build-cjs/src/search-results/components/flight/flight-selection/paired-flight-selection.d.ts +0 -7
  455. package/build/build-cjs/src/search-results/components/group-tour/group-tour-card.d.ts +0 -9
  456. package/build/build-cjs/src/search-results/components/group-tour/group-tour-results.d.ts +0 -6
  457. package/build/build-cjs/src/search-results/components/hotel/hotel-accommodation-results.d.ts +0 -7
  458. package/build/build-cjs/src/search-results/components/hotel/hotel-card.d.ts +0 -8
  459. package/build/build-cjs/src/search-results/components/item-picker/index.d.ts +0 -15
  460. package/build/build-cjs/src/search-results/components/itinerary/full-itinerary.d.ts +0 -6
  461. package/build/build-cjs/src/search-results/components/itinerary/index.d.ts +0 -10
  462. package/build/build-cjs/src/search-results/components/multi-range-filter.d.ts +0 -11
  463. package/build/build-cjs/src/search-results/components/round-trip/round-trip-results.d.ts +0 -4
  464. package/build/build-cjs/src/search-results/components/search-results-container/flight-search-results.d.ts +0 -6
  465. package/build/build-cjs/src/search-results/components/search-results-container/search-results-container.d.ts +0 -6
  466. package/build/build-cjs/src/search-results/components/spinner/spinner.d.ts +0 -6
  467. package/build/build-cjs/src/search-results/components/tab-views/index.d.ts +0 -4
  468. package/build/build-cjs/src/search-results/features/flights/flight-search-results-self-contained.d.ts +0 -4
  469. package/build/build-cjs/src/search-results/features/hotels/hotel-flight-search-results-self-contained.d.ts +0 -4
  470. package/build/build-cjs/src/search-results/features/hotels/hotel-search-results-self-contained.d.ts +0 -4
  471. package/build/build-cjs/src/search-results/features/roundtrips/roundtrip-search-results-self-contained.d.ts +0 -4
  472. package/build/build-cjs/src/search-results/index.d.ts +0 -8
  473. package/build/build-cjs/src/search-results/search-results-configuration-context.d.ts +0 -4
  474. package/build/build-cjs/src/search-results/store/search-results-selectors.d.ts +0 -546
  475. package/build/build-cjs/src/search-results/store/search-results-slice.d.ts +0 -138
  476. package/build/build-cjs/src/search-results/store/search-results-store.d.ts +0 -23
  477. package/build/build-cjs/src/search-results/types.d.ts +0 -211
  478. package/build/build-cjs/src/search-results/utils/flight-utils.d.ts +0 -16
  479. package/build/build-cjs/src/search-results/utils/packaging-utils.d.ts +0 -7
  480. package/build/build-cjs/src/search-results/utils/query-utils.d.ts +0 -12
  481. package/build/build-cjs/src/search-results/utils/search-results-utils.d.ts +0 -16
  482. package/build/build-cjs/src/shared/booking/booking-panel.d.ts +0 -13
  483. package/build/build-cjs/src/shared/booking/product-card.d.ts +0 -8
  484. package/build/build-cjs/src/shared/booking/shared-confirmation.d.ts +0 -25
  485. package/build/build-cjs/src/shared/booking/shared-sidebar.d.ts +0 -34
  486. package/build/build-cjs/src/shared/booking/step-indicators.d.ts +0 -7
  487. package/build/build-cjs/src/shared/booking/summary.d.ts +0 -44
  488. package/build/build-cjs/src/shared/booking/travelers-form.d.ts +0 -93
  489. package/build/build-cjs/src/shared/components/flyin/accommodation-flyin.d.ts +0 -7
  490. package/build/build-cjs/src/shared/components/flyin/flights-flyin.d.ts +0 -7
  491. package/build/build-cjs/src/shared/components/flyin/flyin.d.ts +0 -20
  492. package/build/build-cjs/src/shared/components/flyin/group-tour-flyin.d.ts +0 -8
  493. package/build/build-cjs/src/shared/components/flyin/packaging-flights-flyin.d.ts +0 -9
  494. package/build/build-cjs/src/shared/components/icon.d.ts +0 -11
  495. package/build/build-cjs/src/shared/components/loader.d.ts +0 -6
  496. package/build/build-cjs/src/shared/types.d.ts +0 -16
  497. package/build/build-cjs/src/shared/utils/booking-summary.d.ts +0 -2
  498. package/build/build-cjs/src/shared/utils/class-util.d.ts +0 -1
  499. package/build/build-cjs/src/shared/utils/localization-util.d.ts +0 -440
  500. package/build/build-cjs/src/shared/utils/query-string-util.d.ts +0 -8
  501. package/build/build-cjs/src/shared/utils/tide-api-utils.d.ts +0 -10
  502. package/build/build-cjs/src/shared/utils/use-media-query-util.d.ts +0 -2
  503. package/build/build-esm/index.js +0 -57136
  504. package/build/build-esm/src/booking-product/components/age-select.d.ts +0 -8
  505. package/build/build-esm/src/booking-product/components/amount-input.d.ts +0 -10
  506. package/build/build-esm/src/booking-product/components/date-range-picker/calendar-day.d.ts +0 -13
  507. package/build/build-esm/src/booking-product/components/date-range-picker/calendar.d.ts +0 -19
  508. package/build/build-esm/src/booking-product/components/date-range-picker/index.d.ts +0 -22
  509. package/build/build-esm/src/booking-product/components/dates.d.ts +0 -14
  510. package/build/build-esm/src/booking-product/components/footer.d.ts +0 -10
  511. package/build/build-esm/src/booking-product/components/header.d.ts +0 -11
  512. package/build/build-esm/src/booking-product/components/list-view.d.ts +0 -8
  513. package/build/build-esm/src/booking-product/components/product.d.ts +0 -9
  514. package/build/build-esm/src/booking-product/components/rating.d.ts +0 -6
  515. package/build/build-esm/src/booking-product/components/rooms.d.ts +0 -10
  516. package/build/build-esm/src/booking-product/constants.d.ts +0 -1
  517. package/build/build-esm/src/booking-product/index.d.ts +0 -10
  518. package/build/build-esm/src/booking-product/settings-context.d.ts +0 -5
  519. package/build/build-esm/src/booking-product/types.d.ts +0 -27
  520. package/build/build-esm/src/booking-product/utils/api.d.ts +0 -16
  521. package/build/build-esm/src/booking-product/utils/price.d.ts +0 -10
  522. package/build/build-esm/src/booking-wizard/api-settings-slice.d.ts +0 -5
  523. package/build/build-esm/src/booking-wizard/components/labeled-input.d.ts +0 -18
  524. package/build/build-esm/src/booking-wizard/components/labeled-select.d.ts +0 -21
  525. package/build/build-esm/src/booking-wizard/components/message.d.ts +0 -9
  526. package/build/build-esm/src/booking-wizard/components/multi-range-filter.d.ts +0 -11
  527. package/build/build-esm/src/booking-wizard/components/phone-input.d.ts +0 -17
  528. package/build/build-esm/src/booking-wizard/components/print-offer-button.d.ts +0 -17
  529. package/build/build-esm/src/booking-wizard/components/step-indicator.d.ts +0 -6
  530. package/build/build-esm/src/booking-wizard/components/step-route.d.ts +0 -8
  531. package/build/build-esm/src/booking-wizard/features/booking/api.d.ts +0 -30
  532. package/build/build-esm/src/booking-wizard/features/booking/booking-self-contained.d.ts +0 -8
  533. package/build/build-esm/src/booking-wizard/features/booking/booking-slice.d.ts +0 -121
  534. package/build/build-esm/src/booking-wizard/features/booking/booking.d.ts +0 -8
  535. package/build/build-esm/src/booking-wizard/features/booking/constants.d.ts +0 -15
  536. package/build/build-esm/src/booking-wizard/features/booking/selectors.d.ts +0 -803
  537. package/build/build-esm/src/booking-wizard/features/confirmation/confirmation.d.ts +0 -4
  538. package/build/build-esm/src/booking-wizard/features/error/error.d.ts +0 -4
  539. package/build/build-esm/src/booking-wizard/features/flight-options/flight-filter.d.ts +0 -9
  540. package/build/build-esm/src/booking-wizard/features/flight-options/flight-option-flight.d.ts +0 -8
  541. package/build/build-esm/src/booking-wizard/features/flight-options/flight-option-modal.d.ts +0 -3
  542. package/build/build-esm/src/booking-wizard/features/flight-options/flight-option.d.ts +0 -10
  543. package/build/build-esm/src/booking-wizard/features/flight-options/flight-utils.d.ts +0 -13
  544. package/build/build-esm/src/booking-wizard/features/flight-options/index.d.ts +0 -4
  545. package/build/build-esm/src/booking-wizard/features/price-details/price-details-api.d.ts +0 -11
  546. package/build/build-esm/src/booking-wizard/features/price-details/price-details-slice.d.ts +0 -28
  547. package/build/build-esm/src/booking-wizard/features/price-details/selectors.d.ts +0 -393
  548. package/build/build-esm/src/booking-wizard/features/price-details/util.d.ts +0 -2
  549. package/build/build-esm/src/booking-wizard/features/product-options/no-options.d.ts +0 -3
  550. package/build/build-esm/src/booking-wizard/features/product-options/none-option.d.ts +0 -9
  551. package/build/build-esm/src/booking-wizard/features/product-options/option-booking-airline-group.d.ts +0 -8
  552. package/build/build-esm/src/booking-wizard/features/product-options/option-booking-group.d.ts +0 -12
  553. package/build/build-esm/src/booking-wizard/features/product-options/option-item.d.ts +0 -11
  554. package/build/build-esm/src/booking-wizard/features/product-options/option-pax-card.d.ts +0 -10
  555. package/build/build-esm/src/booking-wizard/features/product-options/option-pax-group.d.ts +0 -13
  556. package/build/build-esm/src/booking-wizard/features/product-options/option-room.d.ts +0 -11
  557. package/build/build-esm/src/booking-wizard/features/product-options/option-unit-group.d.ts +0 -13
  558. package/build/build-esm/src/booking-wizard/features/product-options/option-units-card.d.ts +0 -9
  559. package/build/build-esm/src/booking-wizard/features/product-options/options-form.d.ts +0 -4
  560. package/build/build-esm/src/booking-wizard/features/room-options/index.d.ts +0 -4
  561. package/build/build-esm/src/booking-wizard/features/room-options/room-utils.d.ts +0 -22
  562. package/build/build-esm/src/booking-wizard/features/room-options/room.d.ts +0 -12
  563. package/build/build-esm/src/booking-wizard/features/room-options/traveler-rooms.d.ts +0 -9
  564. package/build/build-esm/src/booking-wizard/features/sidebar/index.d.ts +0 -7
  565. package/build/build-esm/src/booking-wizard/features/sidebar/sidebar-flight.d.ts +0 -9
  566. package/build/build-esm/src/booking-wizard/features/sidebar/sidebar-util.d.ts +0 -16
  567. package/build/build-esm/src/booking-wizard/features/sidebar/sidebar.d.ts +0 -0
  568. package/build/build-esm/src/booking-wizard/features/summary/summary-booking-option-pax.d.ts +0 -7
  569. package/build/build-esm/src/booking-wizard/features/summary/summary-booking-option-unit.d.ts +0 -7
  570. package/build/build-esm/src/booking-wizard/features/summary/summary-flight.d.ts +0 -8
  571. package/build/build-esm/src/booking-wizard/features/summary/summary-per-booking-option-group.d.ts +0 -7
  572. package/build/build-esm/src/booking-wizard/features/summary/summary-per-pax-option-group.d.ts +0 -7
  573. package/build/build-esm/src/booking-wizard/features/summary/summary-per-unit-option-group.d.ts +0 -7
  574. package/build/build-esm/src/booking-wizard/features/summary/summary-slice.d.ts +0 -8
  575. package/build/build-esm/src/booking-wizard/features/summary/summary.d.ts +0 -4
  576. package/build/build-esm/src/booking-wizard/features/travelers-form/controls/gender-control.d.ts +0 -5
  577. package/build/build-esm/src/booking-wizard/features/travelers-form/travelers-form-slice.d.ts +0 -104
  578. package/build/build-esm/src/booking-wizard/features/travelers-form/travelers-form-util.d.ts +0 -7
  579. package/build/build-esm/src/booking-wizard/features/travelers-form/travelers-form.d.ts +0 -3
  580. package/build/build-esm/src/booking-wizard/features/travelers-form/type-ahead-input.d.ts +0 -16
  581. package/build/build-esm/src/booking-wizard/features/travelers-form/validate-form.d.ts +0 -11
  582. package/build/build-esm/src/booking-wizard/index.d.ts +0 -12
  583. package/build/build-esm/src/booking-wizard/settings-context.d.ts +0 -5
  584. package/build/build-esm/src/booking-wizard/store.d.ts +0 -44
  585. package/build/build-esm/src/booking-wizard/types.d.ts +0 -301
  586. package/build/build-esm/src/booking-wizard/use-offer-printer.d.ts +0 -13
  587. package/build/build-esm/src/content/components/LanguageSwitcher.d.ts +0 -12
  588. package/build/build-esm/src/content/components/accordion.d.ts +0 -9
  589. package/build/build-esm/src/content/components/breadcrumb.d.ts +0 -14
  590. package/build/build-esm/src/content/components/contact.d.ts +0 -3
  591. package/build/build-esm/src/content/components/faq.d.ts +0 -11
  592. package/build/build-esm/src/content/components/gallery.d.ts +0 -13
  593. package/build/build-esm/src/content/components/image-with-text.d.ts +0 -29
  594. package/build/build-esm/src/content/components/login.d.ts +0 -3
  595. package/build/build-esm/src/content/components/personal-contact-form.d.ts +0 -3
  596. package/build/build-esm/src/content/components/slider.d.ts +0 -10
  597. package/build/build-esm/src/content/error/error.d.ts +0 -6
  598. package/build/build-esm/src/content/featured-trips/featured-trip-card.d.ts +0 -4
  599. package/build/build-esm/src/content/featured-trips/index.d.ts +0 -4
  600. package/build/build-esm/src/content/featured-trips/types.d.ts +0 -12
  601. package/build/build-esm/src/content/features/content-page/content-page-self-contained.d.ts +0 -6
  602. package/build/build-esm/src/content/footer/index.d.ts +0 -4
  603. package/build/build-esm/src/content/footer/types.d.ts +0 -27
  604. package/build/build-esm/src/content/header/index.d.ts +0 -4
  605. package/build/build-esm/src/content/header/types.d.ts +0 -25
  606. package/build/build-esm/src/content/image-card-grid/index.d.ts +0 -4
  607. package/build/build-esm/src/content/image-card-grid/types.d.ts +0 -12
  608. package/build/build-esm/src/content/image-with-text-section/card.d.ts +0 -4
  609. package/build/build-esm/src/content/image-with-text-section/index.d.ts +0 -4
  610. package/build/build-esm/src/content/image-with-text-section/types.d.ts +0 -19
  611. package/build/build-esm/src/content/login/confirm-component.d.ts +0 -4
  612. package/build/build-esm/src/content/login/index.d.ts +0 -4
  613. package/build/build-esm/src/content/login/login-component.d.ts +0 -4
  614. package/build/build-esm/src/content/login/login-services.d.ts +0 -11
  615. package/build/build-esm/src/content/login/reset-password-component.d.ts +0 -4
  616. package/build/build-esm/src/content/login/types.d.ts +0 -24
  617. package/build/build-esm/src/content/navbar/index.d.ts +0 -4
  618. package/build/build-esm/src/content/navbar/placeholderData.d.ts +0 -12
  619. package/build/build-esm/src/content/navbar/types.d.ts +0 -32
  620. package/build/build-esm/src/index.d.ts +0 -44
  621. package/build/build-esm/src/qsm/components/QSMContainer/qsm-container.d.ts +0 -3
  622. package/build/build-esm/src/qsm/components/date-picker/index.d.ts +0 -3
  623. package/build/build-esm/src/qsm/components/date-range-picker/calendar-day.d.ts +0 -12
  624. package/build/build-esm/src/qsm/components/date-range-picker/calendar.d.ts +0 -24
  625. package/build/build-esm/src/qsm/components/date-range-picker/index.d.ts +0 -10
  626. package/build/build-esm/src/qsm/components/double-search-input-group/index.d.ts +0 -8
  627. package/build/build-esm/src/qsm/components/item-picker/index.d.ts +0 -13
  628. package/build/build-esm/src/qsm/components/mobile-filter-modal/index.d.ts +0 -3
  629. package/build/build-esm/src/qsm/components/search-input/index.d.ts +0 -15
  630. package/build/build-esm/src/qsm/components/search-input-group/index.d.ts +0 -13
  631. package/build/build-esm/src/qsm/components/travel-class-picker/index.d.ts +0 -3
  632. package/build/build-esm/src/qsm/components/travel-input/index.d.ts +0 -3
  633. package/build/build-esm/src/qsm/components/travel-input-group/index.d.ts +0 -3
  634. package/build/build-esm/src/qsm/components/travel-nationality-picker/index.d.ts +0 -3
  635. package/build/build-esm/src/qsm/components/travel-type-picker/index.d.ts +0 -3
  636. package/build/build-esm/src/qsm/index.d.ts +0 -7
  637. package/build/build-esm/src/qsm/qsm-configuration-context.d.ts +0 -4
  638. package/build/build-esm/src/qsm/store/qsm-slice.d.ts +0 -127
  639. package/build/build-esm/src/qsm/store/qsm-store.d.ts +0 -23
  640. package/build/build-esm/src/qsm/types.d.ts +0 -82
  641. package/build/build-esm/src/search-results/components/book-packaging-entry/index.d.ts +0 -9
  642. package/build/build-esm/src/search-results/components/book-packaging-entry/wl-sidebar.d.ts +0 -9
  643. package/build/build-esm/src/search-results/components/excursions/day-by-day-excursions.d.ts +0 -4
  644. package/build/build-esm/src/search-results/components/excursions/excursion-details.d.ts +0 -3
  645. package/build/build-esm/src/search-results/components/excursions/excursion-results.d.ts +0 -8
  646. package/build/build-esm/src/search-results/components/filters/filters.d.ts +0 -13
  647. package/build/build-esm/src/search-results/components/filters/flight-filters.d.ts +0 -8
  648. package/build/build-esm/src/search-results/components/flight/flight-banner.d.ts +0 -8
  649. package/build/build-esm/src/search-results/components/flight/flight-card.d.ts +0 -7
  650. package/build/build-esm/src/search-results/components/flight/flight-leg.d.ts +0 -7
  651. package/build/build-esm/src/search-results/components/flight/flight-path.d.ts +0 -6
  652. package/build/build-esm/src/search-results/components/flight/flight-results.d.ts +0 -8
  653. package/build/build-esm/src/search-results/components/flight/flight-search-context/index.d.ts +0 -39
  654. package/build/build-esm/src/search-results/components/flight/flight-selection/independent-flight-option.d.ts +0 -14
  655. package/build/build-esm/src/search-results/components/flight/flight-selection/independent-flight-selection.d.ts +0 -7
  656. package/build/build-esm/src/search-results/components/flight/flight-selection/index.d.ts +0 -8
  657. package/build/build-esm/src/search-results/components/flight/flight-selection/paired-flight-option.d.ts +0 -7
  658. package/build/build-esm/src/search-results/components/flight/flight-selection/paired-flight-selection.d.ts +0 -7
  659. package/build/build-esm/src/search-results/components/group-tour/group-tour-card.d.ts +0 -9
  660. package/build/build-esm/src/search-results/components/group-tour/group-tour-results.d.ts +0 -6
  661. package/build/build-esm/src/search-results/components/hotel/hotel-accommodation-results.d.ts +0 -7
  662. package/build/build-esm/src/search-results/components/hotel/hotel-card.d.ts +0 -8
  663. package/build/build-esm/src/search-results/components/item-picker/index.d.ts +0 -15
  664. package/build/build-esm/src/search-results/components/itinerary/full-itinerary.d.ts +0 -6
  665. package/build/build-esm/src/search-results/components/itinerary/index.d.ts +0 -10
  666. package/build/build-esm/src/search-results/components/multi-range-filter.d.ts +0 -11
  667. package/build/build-esm/src/search-results/components/round-trip/round-trip-results.d.ts +0 -4
  668. package/build/build-esm/src/search-results/components/search-results-container/flight-search-results.d.ts +0 -6
  669. package/build/build-esm/src/search-results/components/search-results-container/search-results-container.d.ts +0 -6
  670. package/build/build-esm/src/search-results/components/spinner/spinner.d.ts +0 -6
  671. package/build/build-esm/src/search-results/components/tab-views/index.d.ts +0 -4
  672. package/build/build-esm/src/search-results/features/flights/flight-search-results-self-contained.d.ts +0 -4
  673. package/build/build-esm/src/search-results/features/hotels/hotel-flight-search-results-self-contained.d.ts +0 -4
  674. package/build/build-esm/src/search-results/features/hotels/hotel-search-results-self-contained.d.ts +0 -4
  675. package/build/build-esm/src/search-results/features/roundtrips/roundtrip-search-results-self-contained.d.ts +0 -4
  676. package/build/build-esm/src/search-results/index.d.ts +0 -8
  677. package/build/build-esm/src/search-results/search-results-configuration-context.d.ts +0 -4
  678. package/build/build-esm/src/search-results/store/search-results-selectors.d.ts +0 -546
  679. package/build/build-esm/src/search-results/store/search-results-slice.d.ts +0 -138
  680. package/build/build-esm/src/search-results/store/search-results-store.d.ts +0 -23
  681. package/build/build-esm/src/search-results/types.d.ts +0 -211
  682. package/build/build-esm/src/search-results/utils/flight-utils.d.ts +0 -16
  683. package/build/build-esm/src/search-results/utils/packaging-utils.d.ts +0 -7
  684. package/build/build-esm/src/search-results/utils/query-utils.d.ts +0 -12
  685. package/build/build-esm/src/search-results/utils/search-results-utils.d.ts +0 -16
  686. package/build/build-esm/src/shared/booking/booking-panel.d.ts +0 -13
  687. package/build/build-esm/src/shared/booking/product-card.d.ts +0 -8
  688. package/build/build-esm/src/shared/booking/shared-confirmation.d.ts +0 -25
  689. package/build/build-esm/src/shared/booking/shared-sidebar.d.ts +0 -34
  690. package/build/build-esm/src/shared/booking/step-indicators.d.ts +0 -7
  691. package/build/build-esm/src/shared/booking/summary.d.ts +0 -44
  692. package/build/build-esm/src/shared/booking/travelers-form.d.ts +0 -93
  693. package/build/build-esm/src/shared/components/flyin/accommodation-flyin.d.ts +0 -7
  694. package/build/build-esm/src/shared/components/flyin/flights-flyin.d.ts +0 -7
  695. package/build/build-esm/src/shared/components/flyin/flyin.d.ts +0 -20
  696. package/build/build-esm/src/shared/components/flyin/group-tour-flyin.d.ts +0 -8
  697. package/build/build-esm/src/shared/components/flyin/packaging-flights-flyin.d.ts +0 -9
  698. package/build/build-esm/src/shared/components/icon.d.ts +0 -11
  699. package/build/build-esm/src/shared/components/loader.d.ts +0 -6
  700. package/build/build-esm/src/shared/types.d.ts +0 -16
  701. package/build/build-esm/src/shared/utils/booking-summary.d.ts +0 -2
  702. package/build/build-esm/src/shared/utils/class-util.d.ts +0 -1
  703. package/build/build-esm/src/shared/utils/localization-util.d.ts +0 -440
  704. package/build/build-esm/src/shared/utils/query-string-util.d.ts +0 -8
  705. package/build/build-esm/src/shared/utils/tide-api-utils.d.ts +0 -10
  706. package/build/build-esm/src/shared/utils/use-media-query-util.d.ts +0 -2
@@ -1,1114 +1,1114 @@
1
- import { isEmpty } from 'lodash';
2
- import React from 'react';
3
- // import SettingsContext from '../settings-context'; // TODO: SETTINGS LOGIC FOR QSM
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
- fill?: string;
13
- }
14
-
15
- const Icon: React.FC<IconProps> = ({ name, className, title, width, height, fill }) => {
16
- const { icons } = { icons: '' }; // useContext(SettingsContext);
17
-
18
- if (icons) {
19
- return (
20
- <svg
21
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
22
- width={width}
23
- height={height}
24
- fill={fill ?? 'currentColor'}>
25
- {title && <title>{title}</title>}
26
- <use href={`${icons}#${name}`}></use>
27
- </svg>
28
- );
29
- }
30
-
31
- switch (name) {
32
- case 'ui-close':
33
- return (
34
- <svg
35
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
36
- width={width}
37
- height={height}
38
- viewBox="0 0 384 512"
39
- fill={fill ?? 'currentColor'}>
40
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
41
- {title && <title>{title}</title>}
42
- <path
43
- 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
- fill="currentColor"
45
- />
46
- </svg>
47
- );
48
-
49
- case 'ui-plus':
50
- return (
51
- <svg
52
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
53
- width={width}
54
- height={height}
55
- viewBox="0 0 448 512"
56
- fill={fill ?? 'currentColor'}>
57
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
58
- {title && <title>{title}</title>}
59
- <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" />
60
- </svg>
61
- );
62
-
63
- case 'ui-min':
64
- return (
65
- <svg
66
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
67
- width={width}
68
- height={height}
69
- viewBox="0 0 448 512"
70
- fill={fill ?? 'currentColor'}>
71
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
72
- {title && <title>{title}</title>}
73
- <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" />
74
- </svg>
75
- );
76
-
77
- case 'ui-chevron':
78
- return (
79
- <svg
80
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
81
- width={width}
82
- height={height}
83
- viewBox="0 0 320 512"
84
- fill={fill ?? 'currentColor'}>
85
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
86
- {title && <title>{title}</title>}
87
- <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" />
88
- </svg>
89
- );
90
-
91
- case 'ui-info':
92
- return (
93
- <svg
94
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
95
- width={width}
96
- height={height}
97
- viewBox="0 0 512 512"
98
- fill={fill ?? 'currentColor'}>
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
102
- d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"
103
- fill="currentColor"
104
- />
105
- </svg>
106
- );
107
-
108
- case 'ui-calendar':
109
- return (
110
- <svg
111
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
112
- width={width}
113
- height={height}
114
- viewBox="0 0 448 512"
115
- fill={fill ?? 'currentColor'}>
116
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
117
- {title && <title>{title}</title>}
118
- <path
119
- 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"
120
- fill="currentColor"
121
- />
122
- </svg>
123
- );
124
-
125
- case 'ui-bed':
126
- return (
127
- <svg
128
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
129
- width={width}
130
- height={height}
131
- viewBox="0 0 640 512"
132
- fill={fill ?? 'currentColor'}>
133
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
134
- {title && <title>{title}</title>}
135
- <path
136
- 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"
137
- fill={fill ?? 'currentColor'}
138
- />
139
- </svg>
140
- );
141
-
142
- case 'ui-utensils':
143
- return (
144
- <svg
145
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
146
- width={width}
147
- height={height}
148
- viewBox="0 0 416 512"
149
- fill={fill ?? 'currentColor'}>
150
- <HTMLComment text="!Font Awesome Free v5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
151
- {title && <title>{title}</title>}
152
- <path d="M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" />
153
- </svg>
154
- );
155
-
156
- case 'ui-flight':
157
- return (
158
- <svg
159
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
160
- width={width}
161
- height={height}
162
- viewBox="0 0 576 512"
163
- fill={fill ?? 'currentColor'}>
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="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" />
167
- </svg>
168
- );
169
-
170
- case 'ui-transfer':
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
- fill={fill ?? 'currentColor'}>
178
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
179
- {title && <title>{title}</title>}
180
- <path
181
- 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"
182
- fill="currentColor"
183
- />
184
- </svg>
185
- );
186
-
187
- case 'ui-star':
188
- return (
189
- <svg
190
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
191
- width={width}
192
- height={height}
193
- viewBox="0 0 576 512"
194
- fill={fill ?? 'currentColor'}>
195
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
196
- {title && <title>{title}</title>}
197
- <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" />
198
- </svg>
199
- );
200
-
201
- case 'ui-halfstar':
202
- return (
203
- <svg
204
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
205
- width={width}
206
- height={height}
207
- viewBox="0 0 576 512"
208
- fill={fill ?? 'currentColor'}>
209
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
210
- {title && <title>{title}</title>}
211
- <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" />
212
- </svg>
213
- );
214
-
215
- case 'ui-user':
216
- return (
217
- <svg
218
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
219
- width={width}
220
- height={height}
221
- viewBox="0 0 448 512"
222
- fill={fill ?? 'currentColor'}>
223
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
224
- {title && <title>{title}</title>}
225
- <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" />
226
- </svg>
227
- );
228
-
229
- case 'ui-pencil':
230
- return (
231
- <svg
232
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
233
- width={width}
234
- height={height}
235
- viewBox="0 0 512 512"
236
- fill={fill ?? 'currentColor'}>
237
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
238
- {title && <title>{title}</title>}
239
- <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" />
240
- </svg>
241
- );
242
-
243
- case 'ui-check':
244
- return (
245
- <svg
246
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
247
- width={width}
248
- height={height}
249
- viewBox="0 0 448 512"
250
- fill={fill ?? 'currentColor'}>
251
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
252
- {title && <title>{title}</title>}
253
- <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" />
254
- </svg>
255
- );
256
-
257
- case 'ui-hotel':
258
- return (
259
- <svg
260
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
261
- width={width}
262
- height={height}
263
- viewBox="0 0 640 640"
264
- fill={fill ?? 'currentColor'}>
265
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
266
- {title && <title>{title}</title>}
267
- <path
268
- d="M16 24C16 10.7 26.7 0 40 0L472 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-8 0 0 416 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L40 512c-13.3 0-24-10.7-24-24s10.7-24 24-24l8 0 0-416-8 0C26.7 48 16 37.3 16 24zm208 88l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0c-8.8 0-16 7.2-16 16zM128 96c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0zm96 112l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0c-8.8 0-16 7.2-16 16zM352 96c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0zM112 208l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0c-8.8 0-16 7.2-16 16zm240-16c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0zM288 384l43.8 0c9.9 0 17.5-9 14-18.2-13.8-36.1-48.8-61.8-89.7-61.8s-75.9 25.7-89.7 61.8c-3.5 9.2 4.1 18.2 14 18.2l43.8 0 0 80 64 0 0-80z"
269
- fill="currentColor"
270
- />
271
- </svg>
272
- );
273
-
274
- case 'ui-location':
275
- return (
276
- <svg
277
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
278
- width={width}
279
- height={height}
280
- viewBox="0 0 384 512"
281
- fill={fill ?? 'currentColor'}>
282
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
283
- {title && <title>{title}</title>}
284
- <path
285
- d="M0 188.6C0 84.4 86 0 192 0S384 84.4 384 188.6c0 119.3-120.2 262.3-170.4 316.8-11.8 12.8-31.5 12.8-43.3 0-50.2-54.5-170.4-197.5-170.4-316.8zM192 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z"
286
- fill="currentColor"
287
- />
288
- </svg>
289
- );
290
-
291
- case 'ui-suitcase':
292
- return (
293
- <svg
294
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
295
- width={width}
296
- height={height}
297
- viewBox="0 0 512 512"
298
- fill={fill ?? 'currentColor'}>
299
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
300
- {title && <title>{title}</title>}
301
- <path
302
- d="M200 48l112 0c4.4 0 8 3.6 8 8l0 40-128 0 0-40c0-4.4 3.6-8 8-8zm-56 8l0 424 224 0 0-424c0-30.9-25.1-56-56-56L200 0c-30.9 0-56 25.1-56 56zM416 96l0 384 32 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64l-32 0zM96 480l0-384-32 0C28.7 96 0 124.7 0 160L0 416c0 35.3 28.7 64 64 64l32 0z"
303
- fill="currentColor"
304
- />
305
- </svg>
306
- );
307
-
308
- case 'ui-ticket':
309
- return (
310
- <svg
311
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
312
- width={width}
313
- height={height}
314
- viewBox="0 0 576 512"
315
- fill={fill ?? 'currentColor'}>
316
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
317
- {title && <title>{title}</title>}
318
- <path d="M64 64C28.7 64 0 92.7 0 128l0 64C0 200.8 7.4 207.7 15.7 210.6 34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320l0 64c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-64c0-8.8-7.4-15.7-15.7-18.6-18.8-6.5-32.3-24.4-32.3-45.4s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6l0-64c0-35.3-28.7-64-64-64L64 64zM416 336l0-160-256 0 0 160 256 0zM112 160c0-17.7 14.3-32 32-32l288 0c17.7 0 32 14.3 32 32l0 192c0 17.7-14.3 32-32 32l-288 0c-17.7 0-32-14.3-32-32l0-192z" />
319
- </svg>
320
- );
321
-
322
- case 'ui-backforward':
323
- return (
324
- <svg
325
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
326
- width={width}
327
- height={height}
328
- viewBox="0 0 512 512"
329
- fill={fill ?? 'currentColor'}>
330
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
331
- {title && <title>{title}</title>}
332
- <path
333
- d="M502.6 150.6l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L402.7 160 32 160c-17.7 0-32-14.3-32-32S14.3 96 32 96l370.7 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3zm-397.3 352l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 352 480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32l-370.7 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z"
334
- fill="currentColor"
335
- />
336
- </svg>
337
- );
338
-
339
- case 'ui-car':
340
- return (
341
- <svg
342
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
343
- width={width}
344
- height={height}
345
- viewBox="0 0 512 512"
346
- fill={fill ?? 'currentColor'}>
347
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
348
- {title && <title>{title}</title>}
349
- <path
350
- d="M135.2 117.4l-26.1 74.6 293.8 0-26.1-74.6C372.3 104.6 360.2 96 346.6 96L165.4 96c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32l181.2 0c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2l0 192c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-32-320 0 0 32c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32L0 256c0-26.7 16.4-49.6 39.6-59.2zM128 304a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"
351
- fill="currentColor"
352
- />
353
- </svg>
354
- );
355
-
356
- case 'ui-ship':
357
- return (
358
- <svg
359
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
360
- width={width}
361
- height={height}
362
- viewBox="0 0 640 512"
363
- fill={fill ?? 'currentColor'}>
364
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
365
- {title && <title>{title}</title>}
366
- <path
367
- d="M272 0c-26.5 0-48 21.5-48 48l0 16-16 0c-44.2 0-80 35.8-80 80l0 108.8-21.6 8.6c-14.8 5.9-22.5 22.4-17.4 37.5 10.4 31.3 26.8 59.3 47.7 83.1 20.1-9.2 41.7-13.9 63.3-14 33.1-.2 66.3 10.2 94.4 31.4l1.6 1.2 0-215-104 41.6 0-83.2c0-8.8 7.2-16 16-16l224 0c8.8 0 16 7.2 16 16l0 83.2-104-41.6 0 215 1.6-1.2c27.5-20.7 59.9-31.2 92.4-31.4 22.3-.1 44.6 4.5 65.3 14 20.9-23.7 37.3-51.8 47.7-83.1 5-15.2-2.6-31.6-17.4-37.5L512 252.8 512 144c0-44.2-35.8-80-80-80l-16 0 0-16c0-26.5-21.5-48-48-48L272 0zM403.4 476.1c21.3-16.1 49.9-16.1 71.2 0 19 14.4 41.9 28.2 67.2 33.3 26.5 5.4 54.3 .8 80.7-19.1 10.6-8 12.7-23 4.7-33.6s-23-12.7-33.6-4.7c-14.9 11.2-28.6 13.1-42.3 10.3-14.9-3-30.9-11.9-47.8-24.6-38.4-29-90.5-29-129 0-24 18.1-40.7 26.3-54.5 26.3s-30.5-8.2-54.5-26.3c-38.4-29-90.5-29-129 0-21.6 16.3-41.3 25.8-58.9 25.7-9.6-.1-19.9-3-31.2-11.5-10.6-8-25.6-5.9-33.6 4.7S7 482.3 17.6 490.3c19.1 14.4 39.4 21 59.8 21.1 33.9 .2 64.3-17.4 88.1-35.3 21.3-16.1 49.9-16.1 71.2 0 24.2 18.3 52.3 35.9 83.4 35.9s59.1-17.7 83.4-35.9z"
368
- fill="currentColor"
369
- />
370
- </svg>
371
- );
372
-
373
- case 'ui-wifi':
374
- return (
375
- <svg
376
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
377
- width={width}
378
- height={height}
379
- viewBox="0 0 576 512"
380
- fill={fill ?? 'currentColor'}>
381
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
382
- {title && <title>{title}</title>}
383
- <path
384
- d="M288 96c-90.9 0-173.2 36-233.7 94.6-12.7 12.3-33 12-45.2-.7s-12-33 .7-45.2C81.7 74.9 179.9 32 288 32S494.3 74.9 566.3 144.7c12.7 12.3 13 32.6 .7 45.2s-32.6 13-45.2 .7C461.2 132 378.9 96 288 96zM240 432a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM168 326.2c-11.7 13.3-31.9 14.5-45.2 2.8s-14.5-31.9-2.8-45.2C161 237.4 221.1 208 288 208s127 29.4 168 75.8c11.7 13.3 10.4 33.5-2.8 45.2s-33.5 10.4-45.2-2.8C378.6 292.9 335.8 272 288 272s-90.6 20.9-120 54.2z"
385
- fill="currentColor"
386
- />
387
- </svg>
388
- );
389
-
390
- case 'ui-filter':
391
- return (
392
- <svg
393
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
394
- width={width}
395
- height={height}
396
- viewBox="0 0 10.701 9.698"
397
- fill={fill ?? 'currentColor'}>
398
- {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
399
- {title && <title>{title}</title>}
400
- <g id="filter-solid" transform="translate(-2.667 -5.333)">
401
- <path
402
- id="Path_54"
403
- data-name="Path 54"
404
- d="M9.355,15.031V10.517l3.836-3.846a.605.605,0,0,0,.177-.435V5.668a.334.334,0,0,0-.334-.334H3a.334.334,0,0,0-.334.334v.558a.6.6,0,0,0,.177.425L6.68,10.544v3.411Z"
405
- transform="translate(0 0)"
406
- fill="#12aad8"
407
- />
408
- <path
409
- id="Path_55"
410
- data-name="Path 55"
411
- d="M13.194,5.333H2.827a.174.174,0,0,0-.161.174v.575A.445.445,0,0,0,2.8,6.4L6.81,10.413v3.344l2.425,1.207V10.406l4.013-4.013a.451.451,0,0,0,.12-.3V5.507a.174.174,0,0,0-.174-.174Z"
412
- />
413
- </g>
414
- </svg>
415
- );
416
-
417
- case 'ui-plane':
418
- return (
419
- <svg
420
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
421
- width={width}
422
- height={height}
423
- viewBox="0 0 576 512"
424
- fill={fill ?? 'currentColor'}>
425
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
426
- {title && <title>{title}</title>}
427
- <path
428
- d="M520 200c30.9 0 56 25.1 56 56s-25.1 56-56 56l-127.3 0-159.2 173.6c-6.1 6.6-14.6 10.4-23.6 10.4l-43.7 0c-10.9 0-18.6-10.7-15.2-21.1l54.3-162.9-99.7 0-52.8 66c-3 3.8-7.6 6-12.5 6l-19.8 0c-10.4 0-18-9.8-15.5-19.9L32 256 5 147.9C2.4 137.8 10.1 128 20.5 128l19.8 0c4.9 0 9.5 2.2 12.5 6l52.8 66 99.7 0-54.3-162.9C147.6 26.7 155.3 16 166.2 16l43.7 0c9 0 17.5 3.8 23.6 10.4L392.7 200 520 200z"
429
- fill="currentColor"
430
- />
431
- </svg>
432
- );
433
-
434
- case 'ui-plane-depart':
435
- return (
436
- <svg
437
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
438
- width={width}
439
- height={height}
440
- viewBox="0 0 640 512"
441
- fill={fill ?? 'currentColor'}>
442
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
443
- {title && <title>{title}</title>}
444
- <path d="M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2l137.7 0c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48l-57.4 0c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32l576 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 448c-17.7 0-32 14.3-32 32z" />
445
- </svg>
446
- );
447
-
448
- case 'ui-plane-arrive':
449
- return (
450
- <svg
451
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
452
- width={width}
453
- height={height}
454
- viewBox="0 0 640 512"
455
- fill={fill ?? 'currentColor'}>
456
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
457
- {title && <title>{title}</title>}
458
- <path d="M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0l40.1 0c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14.1-9.3-22.5zM32 448l576 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 512c-17.7 0-32-14.3-32-32s14.3-32 32-32zm96-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" />
459
- </svg>
460
- );
461
-
462
- case 'ui-clock':
463
- return (
464
- <svg
465
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
466
- width={width}
467
- height={height}
468
- viewBox="0 0 19 19"
469
- fill={fill ?? 'currentColor'}>
470
- {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
471
- {title && <title>{title}</title>}
472
- <g id="Group_56" data-name="Group 56" transform="translate(-390 -665)">
473
- <circle id="Ellipse_5" data-name="Ellipse 5" cx="9.5" cy="9.5" r="9.5" transform="translate(390 665)" fill="#fff" />
474
- <g id="time" transform="translate(391.211 666.211)">
475
- <path
476
- id="Path_11"
477
- data-name="Path 11"
478
- d="M8.289,13.578a5.289,5.289,0,1,1,5.289-5.289A5.289,5.289,0,0,1,8.289,13.578Zm0-9.823a4.534,4.534,0,1,0,4.534,4.534A4.534,4.534,0,0,0,8.289,3.756Z"
479
- transform="translate(0 0)"
480
- />
481
- <path id="Path_12" data-name="Path 12" d="M24.612,16.167,22.5,14.055V10.5h.756v3.241l1.889,1.893Z" transform="translate(-14.589 -5.611)" />
482
- </g>
483
- </g>
484
- </svg>
485
- );
486
-
487
- case 'ui-flag':
488
- return (
489
- <svg
490
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
491
- width={width}
492
- height={height}
493
- viewBox="0 0 448 512"
494
- fill={fill ?? 'currentColor'}>
495
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
496
- {title && <title>{title}</title>}
497
- <path
498
- d="M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24L0 488c0 13.3 10.7 24 24 24s24-10.7 24-24l0-100 80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4 44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30l0-279.7c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0-35.1-17.6-75.4-22-113.5-12.5L48 52 48 24zm0 77.5l96.6-24.2c27-6.7 55.5-3.6 80.4 8.8 54.9 27.4 118.7 29.7 175 6.8l0 241.8-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4-48.2-24.1-103.3-30.1-155.6-17.1l-68.6 17.2 0-237z"
499
- fill="currentColor"
500
- />
501
- </svg>
502
- );
503
-
504
- case 'ui-moon':
505
- return (
506
- <svg
507
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
508
- width={width}
509
- height={height}
510
- viewBox="0 0 512 512"
511
- fill={fill ?? 'currentColor'}>
512
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
513
- {title && <title>{title}</title>}
514
- <path
515
- d="M239.3 48.7c-107.1 8.5-191.3 98.1-191.3 207.3 0 114.9 93.1 208 208 208 33.3 0 64.7-7.8 92.6-21.7-103.4-23.4-180.6-115.8-180.6-226.3 0-65.8 27.4-125.1 71.3-167.3zM0 256c0-141.4 114.6-256 256-256 19.4 0 38.4 2.2 56.7 6.3 9.9 2.2 17.3 10.5 18.5 20.5s-4 19.8-13.1 24.4c-60.6 30.2-102.1 92.7-102.1 164.8 0 101.6 82.4 184 184 184 5 0 9.9-.2 14.8-.6 10.1-.8 19.6 4.8 23.8 14.1s2 20.1-5.3 27.1C387.3 484.8 324.8 512 256 512 114.6 512 0 397.4 0 256z"
516
- fill="currentColor"
517
- />
518
- </svg>
519
- );
520
-
521
- case 'ui-extended':
522
- return (
523
- <svg
524
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
525
- width={width}
526
- height={height}
527
- viewBox="0 0 448 512"
528
- fill={fill ?? 'currentColor'}>
529
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
530
- {title && <title>{title}</title>}
531
- <path
532
- d="M0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 224l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 352l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64z"
533
- fill="currentColor"
534
- />
535
- </svg>
536
- );
537
-
538
- case 'ui-compact':
539
- return (
540
- <svg
541
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
542
- width={width}
543
- height={height}
544
- viewBox="0 0 448 512"
545
- fill={fill ?? 'currentColor'}>
546
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
547
- {title && <title>{title}</title>}
548
- <path
549
- d="M384 96l0 128-128 0 0-128 128 0zm0 192l0 128-128 0 0-128 128 0zM192 224l-128 0 0-128 128 0 0 128zM64 288l128 0 0 128-128 0 0-128zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z"
550
- fill="currentColor"
551
- />
552
- </svg>
553
- );
554
-
555
- case 'ui-list':
556
- return (
557
- <svg
558
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
559
- width={width}
560
- height={height}
561
- viewBox="0 0 512 512"
562
- fill={fill ?? 'currentColor'}>
563
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
564
- {title && <title>{title}</title>}
565
- <path
566
- d="M64 112c-8.8 0-16 7.2-16 16l0 256c0 8.8 7.2 16 16 16l384 0c8.8 0 16-7.2 16-16l0-256c0-8.8-7.2-16-16-16L64 112zM0 128C0 92.7 28.7 64 64 64l384 0c35.3 0 64 28.7 64 64l0 256c0 35.3-28.7 64-64 64L64 448c-35.3 0-64-28.7-64-64L0 128zM160 320a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm-32-96a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm104-56l160 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-160 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 128l160 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-160 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"
567
- fill="currentColor"
568
- />
569
- </svg>
570
- );
571
-
572
- case 'ui-circle-check':
573
- return (
574
- <svg
575
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
576
- width={width}
577
- height={height}
578
- viewBox="0 0 512 512"
579
- fill={fill ?? 'currentColor'}>
580
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
581
- {title && <title>{title}</title>}
582
- <path
583
- d="M256 512a256 256 0 1 1 0-512 256 256 0 1 1 0 512zM374 145.7c-10.7-7.8-25.7-5.4-33.5 5.3L221.1 315.2 169 263.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72c5 5 11.8 7.5 18.8 7s13.4-4.1 17.5-9.8L379.3 179.2c7.8-10.7 5.4-25.7-5.3-33.5z"
584
- fill="currentColor"
585
- />
586
- </svg>
587
- );
588
-
589
- case 'ui-circle-half':
590
- return (
591
- <svg
592
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
593
- width={width}
594
- height={height}
595
- viewBox="0 0 512 512"
596
- fill={fill ?? 'currentColor'}>
597
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
598
- {title && <title>{title}</title>}
599
- <path d="M448 256c0-106-86-192-192-192l0 384c106 0 192-86 192-192zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0z" fill="currentColor" />
600
- </svg>
601
- );
602
-
603
- case 'ui-men':
604
- return (
605
- <svg
606
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
607
- width={width}
608
- height={height}
609
- viewBox="0 0 512 512"
610
- fill={fill ?? 'currentColor'}>
611
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
612
- {title && <title>{title}</title>}
613
- <path
614
- d="M320 32c0-17.7 14.3-32 32-32L480 0c17.7 0 32 14.3 32 32l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-50.7-95 95c19.5 28.4 31 62.7 31 99.8 0 97.2-78.8 176-176 176S32 401.2 32 304 110.8 128 208 128c37 0 71.4 11.4 99.8 31l95-95-50.7 0c-17.7 0-32-14.3-32-32zM208 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z"
615
- fill="currentColor"
616
- />
617
- </svg>
618
- );
619
-
620
- case 'ui-women':
621
- return (
622
- <svg
623
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
624
- width={width}
625
- height={height}
626
- viewBox="0 0 384 512"
627
- fill={fill ?? 'currentColor'}>
628
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
629
- {title && <title>{title}</title>}
630
- <path
631
- d="M80 176a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zM223.9 349.1C305.9 334.1 368 262.3 368 176 368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144.1 173.1-.1 1-.1 1.9-.1 2.9l0 64-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l32 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 32 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-32 0 0-64c0-1 0-1.9-.1-2.9z"
632
- fill="currentColor"
633
- />
634
- </svg>
635
- );
636
-
637
- case 'ui-other':
638
- return (
639
- <svg
640
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
641
- width={width}
642
- height={height}
643
- viewBox="0 0 640 512"
644
- fill={fill ?? 'currentColor'}>
645
- <HTMLComment text="!Font Awesome Free 6.7.2 - mars-and-venus" />
646
- {title && <title>{title}</title>}
647
-
648
- <path
649
- d="M320 32c0-17.7 14.3-32 32-32l128 0c17.7 0 32 14.3 32 32l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-50.7-64.2 64.2c19.5 28.4 31 62.7 31 99.8 0 97.2-78.8 176-176 176S32 401.2 32 304s78.8-176 176-176c37.1 0 71.4 11.5 99.8 31l64.2-64.2L320 96c-17.7 0-32-14.3-32-32zM208 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z"
650
- fill="currentColor"
651
- />
652
- </svg>
653
- );
654
-
655
- case 'ui-facebook':
656
- return (
657
- <svg
658
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
659
- width={width}
660
- height={height}
661
- viewBox="0 0 512 512">
662
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
663
- {title && <title>{title}</title>}
664
- <path
665
- d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5l0-170.3-52.8 0 0-78.2 52.8 0 0-33.7c0-87.1 39.4-127.5 125-127.5 16.2 0 44.2 3.2 55.7 6.4l0 70.8c-6-.6-16.5-1-29.6-1-42 0-58.2 15.9-58.2 57.2l0 27.8 83.6 0-14.4 78.2-69.3 0 0 175.9C413.8 494.8 512 386.9 512 256z"
666
- fill="currentColor"
667
- />
668
- </svg>
669
- );
670
-
671
- case 'ui-instagram':
672
- return (
673
- <svg
674
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
675
- width={width}
676
- height={height}
677
- viewBox="0 0 448 512">
678
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
679
- {title && <title>{title}</title>}
680
- <path
681
- d="M194.4 211.7a53.3 53.3 0 1 0 59.2 88.6 53.3 53.3 0 1 0 -59.2-88.6zm142.3-68.4c-5.2-5.2-11.5-9.3-18.4-12-18.1-7.1-57.6-6.8-83.1-6.5-4.1 0-7.9 .1-11.2 .1s-7.2 0-11.4-.1c-25.5-.3-64.8-.7-82.9 6.5-6.9 2.7-13.1 6.8-18.4 12s-9.3 11.5-12 18.4c-7.1 18.1-6.7 57.7-6.5 83.2 0 4.1 .1 7.9 .1 11.1s0 7-.1 11.1c-.2 25.5-.6 65.1 6.5 83.2 2.7 6.9 6.8 13.1 12 18.4s11.5 9.3 18.4 12c18.1 7.1 57.6 6.8 83.1 6.5 4.1 0 7.9-.1 11.2-.1s7.2 0 11.4 .1c25.5 .3 64.8 .7 82.9-6.5 6.9-2.7 13.1-6.8 18.4-12s9.3-11.5 12-18.4c7.2-18 6.8-57.4 6.5-83 0-4.2-.1-8.1-.1-11.4s0-7.1 .1-11.4c.3-25.5 .7-64.9-6.5-83-2.7-6.9-6.8-13.1-12-18.4l0 .2zm-67.1 44.5c18.1 12.1 30.6 30.9 34.9 52.2s-.2 43.5-12.3 61.6c-6 9-13.7 16.6-22.6 22.6s-19 10.1-29.6 12.2c-21.3 4.2-43.5-.2-61.6-12.3s-30.6-30.9-34.9-52.2 .2-43.5 12.2-61.6 30.9-30.6 52.2-34.9 43.5 .2 61.6 12.2l.1 0zm29.2-1.3c-3.1-2.1-5.6-5.1-7.1-8.6s-1.8-7.3-1.1-11.1 2.6-7.1 5.2-9.8 6.1-4.5 9.8-5.2 7.6-.4 11.1 1.1 6.5 3.9 8.6 7 3.2 6.8 3.2 10.6c0 2.5-.5 5-1.4 7.3s-2.4 4.4-4.1 6.2-3.9 3.2-6.2 4.2-4.8 1.5-7.3 1.5c-3.8 0-7.5-1.1-10.6-3.2l-.1 0zM448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM357 389c-18.7 18.7-41.4 24.6-67 25.9-26.4 1.5-105.6 1.5-132 0-25.6-1.3-48.3-7.2-67-25.9s-24.6-41.4-25.8-67c-1.5-26.4-1.5-105.6 0-132 1.3-25.6 7.1-48.3 25.8-67s41.5-24.6 67-25.8c26.4-1.5 105.6-1.5 132 0 25.6 1.3 48.3 7.1 67 25.8s24.6 41.4 25.8 67c1.5 26.3 1.5 105.4 0 131.9-1.3 25.6-7.1 48.3-25.8 67l0 .1z"
682
- fill="currentColor"
683
- />
684
- </svg>
685
- );
686
-
687
- case 'ui-linkedin':
688
- return (
689
- <svg
690
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
691
- width={width}
692
- height={height}
693
- viewBox="0 0 448 512">
694
- <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
695
- {title && <title>{title}</title>}
696
- <path
697
- d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm5 170.2l66.5 0 0 213.8-66.5 0 0-213.8zm71.7-67.7a38.5 38.5 0 1 1 -77 0 38.5 38.5 0 1 1 77 0zM317.9 416l0-104c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9l0 105.8-66.4 0 0-213.8 63.7 0 0 29.2 .9 0c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9l0 117.2-66.4 0z"
698
- fill="currentColor"
699
- />
700
- </svg>
701
- );
702
-
703
- case 'ui-search':
704
- return (
705
- <svg
706
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
707
- width={width}
708
- height={height}
709
- viewBox="0 0 512 512">
710
- <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
711
- {title && <title>{title}</title>}
712
- <path
713
- d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"
714
- fill="currentColor"
715
- />
716
- </svg>
717
- );
718
-
719
- case 'ui-home':
720
- return (
721
- <svg
722
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
723
- width={width}
724
- height={height}
725
- viewBox="0 0 512 512">
726
- <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
727
- {title && <title>{title}</title>}
728
- <path
729
- d="M277.8 8.6c-12.3-11.4-31.3-11.4-43.5 0l-224 208c-9.6 9-12.8 22.9-8 35.1S18.8 272 32 272l16 0 0 176c0 35.3 28.7 64 64 64l288 0c35.3 0 64-28.7 64-64l0-176 16 0c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8-35.1l-224-208zM240 320l32 0c26.5 0 48 21.5 48 48l0 96-128 0 0-96c0-26.5 21.5-48 48-48z"
730
- fill="currentColor"
731
- />
732
- </svg>
733
- );
734
-
735
- case 'ui-arrow':
736
- return (
737
- <svg
738
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
739
- width={width}
740
- height={height}
741
- viewBox="0 0 512 512">
742
- <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
743
- {title && <title>{title}</title>}
744
- <path
745
- d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 105.4-105.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"
746
- fill="currentColor"
747
- />
748
- </svg>
749
- );
750
-
751
- case 'ui-bag':
752
- return (
753
- <svg
754
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
755
- width={width}
756
- height={height}
757
- viewBox="0 0 512 512">
758
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
759
- {title && <title>{title}</title>}
760
- <path
761
- d="M160 80c0-35.3 28.7-64 64-64s64 28.7 64 64l0 48-128 0 0-48zm-48 48l-64 0c-26.5 0-48 21.5-48 48L0 384c0 53 43 96 96 96l256 0c53 0 96-43 96-96l0-208c0-26.5-21.5-48-48-48l-64 0 0-48c0-61.9-50.1-112-112-112S112 18.1 112 80l0 48zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm152 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"
762
- fill="currentColor"
763
- />
764
- </svg>
765
- );
766
-
767
- case 'ui-seat':
768
- return (
769
- <svg
770
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
771
- width={width}
772
- height={height}
773
- viewBox="0 0 128 128">
774
- {title && <title>{title}</title>}
775
- <path
776
- d="M44.7,46.3c-2.1-13.7,17.6-17.8,20.8-3.9l5.4,26.8l20.1,0c5.8,0,8.9,4.7,8.9,9v36.4c0,8.9-12.6,8.8-12.6-0.2V86.2H61.6 c-6,0-9.7-4.1-10.6-8.8L44.7,46.3z"
777
- fill="currentColor"
778
- />
779
- <path d="M54.1,30.3c6.5,0,11.8-5.2,11.9-11.8C66,12,60.7,6.7,54.1,6.7c-6.5,0-11.8,5.2-11.8,11.7C42.3,25,47.5,30.3,54.1,30.3" fill="currentColor" />
780
- <path
781
- d="M28.4,60.6c-1.4-7.6,8.6-9.4,10-1.8l4.4,23.9c1,5,4.6,9.2,9.8,10.8c1.6,0.5,3.3,0.5,4.8,0.6l14.5,0.1 c7.7,0,7.7,10.1-0.1,10.1l-15.2-0.1c-2.3,0-4.7-0.3-7-1c-9-2.7-15.3-10.1-16.9-18.7L28.4,60.6z"
782
- fill="currentColor"
783
- />
784
- </svg>
785
- );
786
-
787
- case 'ui-refund':
788
- return (
789
- <svg
790
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
791
- width={width}
792
- height={height}
793
- viewBox="0 0 576 512">
794
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
795
- {title && <title>{title}</title>}
796
- <path
797
- d="M288-16c-13.3 0-24 10.7-24 24l0 12-1.8 0c-36.6 0-66.2 29.7-66.2 66.2 0 33.4 24.9 61.6 58 65.7l61 7.6c5.1 .6 9 5 9 10.2 0 5.7-4.6 10.2-10.2 10.2L240 180c-15.5 0-28 12.5-28 28s12.5 28 28 28l24 0 0 12c0 13.3 10.7 24 24 24s24-10.7 24-24l0-12 1.8 0c36.6 0 66.2-29.7 66.2-66.2 0-33.4-24.9-61.6-58-65.7l-61-7.6c-5.1-.6-9-5-9-10.2 0-5.7 4.6-10.2 10.2-10.2L328 76c15.5 0 28-12.5 28-28s-12.5-28-28-28l-16 0 0-12c0-13.3-10.7-24-24-24zM109.3 341.5L66.7 384 32 384c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l320.5 0c29 0 57.3-9.3 80.7-26.5l126.6-93.3c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416 280 416c-13.3 0-24-10.7-24-24s10.7-24 24-24l72 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-152.2 0c-33.9 0-66.5 13.5-90.5 37.5z"
798
- fill="currentColor"
799
- />
800
- </svg>
801
- );
802
-
803
- case 'ui-priority':
804
- return (
805
- <svg
806
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
807
- width={width}
808
- height={height}
809
- viewBox="0 0 576 512">
810
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
811
- {title && <title>{title}</title>}
812
- <path
813
- d="M104.5 24a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm-8 181.3L73.9 227.9c-6 6-9.4 14.1-9.4 22.6l0 37.5c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-37.5c0-25.5 10.1-49.9 28.1-67.9l35.1-35.1c22.8-22.8 53.6-35.6 85.8-35.6 36.9 0 71.8 16.8 94.8 45.6L262.3 180c6.1 7.6 15.3 12 25 12l33.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-33.2 0c-29.2 0-56.7-13.3-75-36l-3.8-4.7 0 115.2 34.5 29.6c17.7 15.2 29.3 36.2 32.6 59.3l12.6 88.1c2.5 17.5-9.7 33.7-27.2 36.2s-33.7-9.7-36.2-27.2l-12.6-88.1c-1.1-7.7-5-14.7-10.9-19.8L130 347.5c-21.3-18.2-33.5-44.9-33.5-72.9l0-69.3zM96.6 371c2.4 2.3 4.8 4.6 7.4 6.8l46 39.4-2.2 7.6c-4.5 15.7-12.9 30-24.4 41.5L55.1 534.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l68.3-68.3c3.8-3.8 6.6-8.6 8.1-13.8L96.6 371zM505.5 345c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-102.1 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l102.1 0-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9l-72 72z"
814
- fill="currentColor"
815
- />
816
- </svg>
817
- );
818
-
819
- case 'ui-lounge':
820
- return (
821
- <svg
822
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
823
- width={width}
824
- height={height}
825
- viewBox="0 0 640 512">
826
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
827
- {title && <title>{title}</title>}
828
- <path
829
- d="M144 272C144 224.7 109.8 185.4 64.8 177.5 72 113.6 126.2 64 192 64l256 0c65.8 0 120 49.6 127.2 113.5-45 8-79.2 47.2-79.2 94.5l0 32-352 0 0-32zM0 384L0 272c0-26.5 21.5-48 48-48s48 21.5 48 48l0 80 448 0 0-80c0-26.5 21.5-48 48-48s48 21.5 48 48l0 112c0 35.3-28.7 64-64 64L64 448c-35.3 0-64-28.7-64-64z"
830
- fill="currentColor"
831
- />
832
- </svg>
833
- );
834
-
835
- case 'ui-else':
836
- return (
837
- <svg
838
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
839
- width={width}
840
- height={height}
841
- viewBox="0 0 448 512">
842
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
843
- {title && <title>{title}</title>}
844
- <path
845
- d="M0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 224l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 352l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64z"
846
- fill="currentColor"
847
- />
848
- </svg>
849
- );
850
-
851
- case 'ui-excursion':
852
- return (
853
- <svg
854
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
855
- width={width}
856
- height={height}
857
- viewBox="0 0 384 512"
858
- fill={fill ?? 'currentColor'}>
859
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
860
- {title && <title>{title}</title>}
861
- <path d="M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z" />
862
- </svg>
863
- );
864
-
865
- case 'ui-group':
866
- return (
867
- <svg
868
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
869
- width={width}
870
- height={height}
871
- viewBox="0 0 640 512">
872
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
873
- {title && <title>{title}</title>}
874
- <path
875
- d="M72 88a56 56 0 1 1 112 0A56 56 0 1 1 72 88zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3l0-84.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5l0 21.5c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32l0-26.8C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112l32 0c24 0 46.2 7.5 64.4 20.3zM448 416l0-21.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176l32 0c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2l0 26.8c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32zm8-328a56 56 0 1 1 112 0A56 56 0 1 1 456 88zM576 245.7l0 84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM240 304c0 16.2 6 31 16 42.3l0-84.7c-10 11.3-16 26.1-16 42.3zm144-42.3l0 84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2l0 42.8c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32l0-42.8c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112l32 0c61.9 0 112 50.1 112 112z"
876
- fill="currentColor"
877
- />
878
- </svg>
879
- );
880
-
881
- case 'ui-error':
882
- return (
883
- <svg
884
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
885
- width={width}
886
- height={height}
887
- viewBox="0 0 512 512">
888
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
889
- {title && <title>{title}</title>}
890
- <path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24l0 112c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-112c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" />
891
- </svg>
892
- );
893
-
894
- case 'ui-tel':
895
- return (
896
- <svg
897
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
898
- width={width}
899
- height={height}
900
- viewBox="0 0 512 512">
901
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
902
- {title && <title>{title}</title>}
903
- <path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" />
904
- </svg>
905
- );
906
-
907
- case 'ui-mail':
908
- return (
909
- <svg
910
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
911
- width={width}
912
- height={height}
913
- viewBox="0 0 512 512">
914
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
915
- {title && <title>{title}</title>}
916
- <path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48L48 64zM0 176L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-208L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" />
917
- </svg>
918
- );
919
-
920
- case 'ui-trashcan':
921
- return (
922
- <svg
923
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
924
- width={width}
925
- height={height}
926
- viewBox="0 0 448 512">
927
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
928
- {title && <title>{title}</title>}
929
- <path d="M135.2 17.7L128 32 32 32C14.3 32 0 46.3 0 64S14.3 96 32 96l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 0-7.2-14.3C307.4 6.8 296.3 0 284.2 0L163.8 0c-12.1 0-23.2 6.8-28.6 17.7zM416 128L32 128 53.2 467c1.6 25.3 22.6 45 47.9 45l245.8 0c25.3 0 46.3-19.7 47.9-45L416 128z" />
930
- </svg>
931
- );
932
-
933
- case 'ui-payback':
934
- return (
935
- <svg
936
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
937
- width={width}
938
- height={height}
939
- viewBox="0 0 20 20.154">
940
- {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
941
- {title && <title>{title}</title>}
942
- <g id="layer1" transform="translate(-205.148 -293.014)">
943
- <path
944
- id="path453469"
945
- d="M223.472,306.895a1.674,1.674,0,0,0-1.188.487l-1.971,1.972a1.67,1.67,0,0,0-.978-.726l-4.652-1.247a2.766,2.766,0,0,0-2.182.331l-2.9,1.832-.235-.408a1.089,1.089,0,0,0-1.471-.394l-2.209,1.274a1.089,1.089,0,0,0-.394,1.471l3.291,5.7a1.088,1.088,0,0,0,1.47.4l2.209-1.276a1.09,1.09,0,0,0,.395-1.471l-.043-.076,1.258-.85,4.63.911a1.742,1.742,0,0,0,1.653-.514c1.493-1.527,2.988-3.048,4.505-4.544l0,0a1.675,1.675,0,0,0-1.189-2.863Zm0,1.332a.336.336,0,0,1,.238.1.323.323,0,0,1,0,.476c-1.525,1.5-3.024,3.031-4.518,4.559a1.847,1.847,0,0,1-.433.134l-4.9-.963a.672.672,0,0,0-.507.1l-1.411.954-1.667-2.886,2.947-1.858a1.411,1.411,0,0,1,1.118-.171l4.652,1.247a.336.336,0,1,1-.175.65l-2.92-.782a.672.672,0,0,0-.348,1.3l2.92.782a1.693,1.693,0,0,0,1.741-.572.672.672,0,0,0,.177-.118l2.85-2.852A.336.336,0,0,1,223.472,308.226Zm-15.14,1.812.325.564a.615.615,0,0,0,.253.438l2.445,4.235-1.745,1.008-3.024-5.237Z"
946
- transform="translate(0 -4.554)"
947
- fill-rule="evenodd"
948
- />
949
- <path
950
- id="path453459"
951
- d="M223.672,301.014a.672.672,0,1,0,0,1.344h1.344a.672.672,0,1,0,0-1.344Z"
952
- transform="translate(-5.857 -2.625)"
953
- fill-rule="evenodd"
954
- />
955
- <path
956
- id="path453437"
957
- d="M223.672,297.014a.672.672,0,0,0,0,1.344h1.344a.672.672,0,0,0,0-1.344Z"
958
- transform="translate(-5.857 -1.312)"
959
- fill-rule="evenodd"
960
- />
961
- <path
962
- id="rect18334"
963
- d="M222.7,293.014a4.7,4.7,0,1,0,4.7,4.7A4.714,4.714,0,0,0,222.7,293.014Zm0,1.344a3.359,3.359,0,1,1-3.359,3.359A3.349,3.349,0,0,1,222.7,294.357Z"
964
- transform="translate(-4.217)"
965
- fill-rule="evenodd"
966
- />
967
- </g>
968
- </svg>
969
- );
970
-
971
- case 'ui-backpack':
972
- return (
973
- <svg
974
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
975
- width={width}
976
- height={height}
977
- viewBox="0 0 14.499 16.11">
978
- {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
979
- {title && <title>{title}</title>}
980
- <path
981
- id="Path_2"
982
- data-name="Path 2"
983
- d="M22.444,28.805A.805.805,0,0,0,21.639,28H16.806a.806.806,0,0,0-.806.806v1.611h6.444ZM16,32.027h6.444v2.417H16Z"
984
- transform="translate(-11.972 -18.334)"
985
- />
986
- <path
987
- id="Path_3"
988
- data-name="Path 3"
989
- d="M20.5,12.055a4.837,4.837,0,0,0-4.028-4.761V6.417A2.419,2.419,0,0,0,14.055,4H12.444a2.419,2.419,0,0,0-2.417,2.417v.878A4.837,4.837,0,0,0,6,12.055V18.5A1.613,1.613,0,0,0,7.611,20.11h.806V14.472a2.419,2.419,0,0,1,2.417-2.417h4.833a2.419,2.419,0,0,1,2.417,2.417V20.11h.806A1.613,1.613,0,0,0,20.5,18.5ZM11.639,6.417a.806.806,0,0,1,.806-.806h1.611a.805.805,0,0,1,.805.806v.806H11.639Z"
990
- transform="translate(-6 -4)"
991
- />
992
- </svg>
993
- );
994
-
995
- case 'ui-business-lounge':
996
- return (
997
- <svg
998
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
999
- width={width}
1000
- height={height}
1001
- viewBox="0 0 20 19.999">
1002
- {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
1003
- {title && <title>{title}</title>}
1004
- <g id="waiting-room-svgrepo-com" transform="translate(0 -0.008)">
1005
- <g id="Group_46" data-name="Group 46" transform="translate(0 0.008)">
1006
- <g id="Group_45" data-name="Group 45" transform="translate(0)">
1007
- <path
1008
- id="Path_33"
1009
- data-name="Path 33"
1010
- d="M65.683,110.007a1.667,1.667,0,1,0-1.667-1.667A1.666,1.666,0,0,0,65.683,110.007Z"
1011
- transform="translate(-61.515 -102.507)"
1012
- />
1013
- <path
1014
- id="Path_34"
1015
- data-name="Path 34"
1016
- d="M6.25,242.2H2.418L.824,235.025a.417.417,0,1,0-.814.181l1.657,7.455v2.454a.417.417,0,1,0,.833,0v-2.083H5v2.083a.417.417,0,1,0,.833,0v-2.083h.417a.417.417,0,0,0,0-.833Z"
1017
- transform="translate(0 -225.532)"
1018
- />
1019
- <path
1020
- id="Path_35"
1021
- data-name="Path 35"
1022
- d="M281.933.008a4.583,4.583,0,1,0,4.583,4.583A4.588,4.588,0,0,0,281.933.008Zm1.667,5h-1.667a.417.417,0,0,1-.417-.417v-2.5a.417.417,0,0,1,.833,0V4.175h1.25a.417.417,0,1,1,0,.833Z"
1023
- transform="translate(-266.516 -0.008)"
1024
- />
1025
- <path
1026
- id="Path_36"
1027
- data-name="Path 36"
1028
- d="M70.265,218.341H67.348v-3.333a1.667,1.667,0,0,0-3.333,0v4.583a1.251,1.251,0,0,0,1.25,1.25h3.75v2.917a1.25,1.25,0,1,0,2.5,0v-4.167A1.251,1.251,0,0,0,70.265,218.341Z"
1029
- transform="translate(-61.514 -205.008)"
1030
- />
1031
- </g>
1032
- </g>
1033
- </g>
1034
- </svg>
1035
- );
1036
-
1037
- case 'ui-shopping-bag':
1038
- return (
1039
- <svg
1040
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1041
- width={width}
1042
- height={height}
1043
- viewBox="0 0 13.299 14.65">
1044
- {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
1045
- {title && <title>{title}</title>}
1046
- <path
1047
- id="Path_22"
1048
- data-name="Path 22"
1049
- d="M9.135.6A3.523,3.523,0,0,0,5.612,4.123V5.691A2.455,2.455,0,0,0,5,5.869,2.967,2.967,0,0,0,3.842,6.8,6.951,6.951,0,0,0,3,9.393c-.452,2.056-.678,3.083-.392,3.885A2.967,2.967,0,0,0,3.835,14.8c.721.451,1.774.451,3.878.451h2.843c2.1,0,3.157,0,3.878-.451a2.967,2.967,0,0,0,1.223-1.521c.285-.8.059-1.829-.392-3.885a6.951,6.951,0,0,0-.837-2.59,2.967,2.967,0,0,0-1.162-.934,2.456,2.456,0,0,0-.608-.178V4.123A3.523,3.523,0,0,0,9.135.6Zm2.411,5.012V4.123a2.411,2.411,0,0,0-4.821,0V5.612c.287,0,.613,0,.989,0h2.843C10.933,5.607,11.259,5.607,11.546,5.612ZM6.168,8.574a.742.742,0,1,0-.742-.742A.742.742,0,0,0,6.168,8.574Zm6.676-.742A.742.742,0,1,1,12.1,7.09.742.742,0,0,1,12.844,7.832Z"
1050
- transform="translate(-2.486 -0.6)"
1051
- fill-rule="evenodd"
1052
- />
1053
- </svg>
1054
- );
1055
-
1056
- case 'ui-tooltip':
1057
- return (
1058
- <svg
1059
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1060
- width={width}
1061
- height={height}
1062
- viewBox="0 0 512 512">
1063
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
1064
- {title && <title>{title}</title>}
1065
- <path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" />
1066
- </svg>
1067
- );
1068
-
1069
- case 'ui-qsm-location':
1070
- return (
1071
- <svg
1072
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1073
- width={width}
1074
- height={height}
1075
- viewBox="0 0 384 512">
1076
- <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
1077
- {title && <title>{title}</title>}
1078
- <path d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" />
1079
- </svg>
1080
- );
1081
-
1082
- case 'ui-triangle-error':
1083
- return (
1084
- <svg
1085
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1086
- width={width}
1087
- height={height}
1088
- viewBox="0 0 512 512"
1089
- fill={fill ?? 'currentColor'}>
1090
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
1091
- {title && <title>{title}</title>}
1092
- <path d="M256 0c14.7 0 28.2 8.1 35.2 21l216 400c6.7 12.4 6.4 27.4-.8 39.5S486.1 480 472 480L40 480c-14.1 0-27.2-7.4-34.4-19.5s-7.5-27.1-.8-39.5l216-400c7-12.9 20.5-21 35.2-21zm0 352a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.5 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z" />
1093
- </svg>
1094
- );
1095
-
1096
- case 'ui-shopping-cart':
1097
- return (
1098
- <svg
1099
- className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1100
- width={width}
1101
- height={height}
1102
- viewBox="0 0 640 512"
1103
- fill={fill ?? 'currentColor'}>
1104
- <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
1105
- {title && <title>{title}</title>}
1106
- <path d="M24-16C10.7-16 0-5.3 0 8S10.7 32 24 32l45.3 0c3.9 0 7.2 2.8 7.9 6.6l52.1 286.3c6.2 34.2 36 59.1 70.8 59.1L456 384c13.3 0 24-10.7 24-24s-10.7-24-24-24l-255.9 0c-11.6 0-21.5-8.3-23.6-19.7l-5.1-28.3 303.6 0c30.8 0 57.2-21.9 62.9-52.2L568.9 69.9C572.6 50.2 557.5 32 537.4 32l-412.7 0-.4-2c-4.8-26.6-28-46-55.1-46L24-16zM208 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm224 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" />
1107
- </svg>
1108
- );
1109
- default:
1110
- return null;
1111
- }
1112
- };
1113
-
1114
- export default Icon;
1
+ import { isEmpty } from 'lodash';
2
+ import React from 'react';
3
+ // import SettingsContext from '../settings-context'; // TODO: SETTINGS LOGIC FOR QSM
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
+ fill?: string;
13
+ }
14
+
15
+ const Icon: React.FC<IconProps> = ({ name, className, title, width, height, fill }) => {
16
+ const { icons } = { icons: '' }; // useContext(SettingsContext);
17
+
18
+ if (icons) {
19
+ return (
20
+ <svg
21
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
22
+ width={width}
23
+ height={height}
24
+ fill={fill ?? 'currentColor'}>
25
+ {title && <title>{title}</title>}
26
+ <use href={`${icons}#${name}`}></use>
27
+ </svg>
28
+ );
29
+ }
30
+
31
+ switch (name) {
32
+ case 'ui-close':
33
+ return (
34
+ <svg
35
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
36
+ width={width}
37
+ height={height}
38
+ viewBox="0 0 384 512"
39
+ fill={fill ?? 'currentColor'}>
40
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
41
+ {title && <title>{title}</title>}
42
+ <path
43
+ 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
+ fill="currentColor"
45
+ />
46
+ </svg>
47
+ );
48
+
49
+ case 'ui-plus':
50
+ return (
51
+ <svg
52
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
53
+ width={width}
54
+ height={height}
55
+ viewBox="0 0 448 512"
56
+ fill={fill ?? 'currentColor'}>
57
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
58
+ {title && <title>{title}</title>}
59
+ <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" />
60
+ </svg>
61
+ );
62
+
63
+ case 'ui-min':
64
+ return (
65
+ <svg
66
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
67
+ width={width}
68
+ height={height}
69
+ viewBox="0 0 448 512"
70
+ fill={fill ?? 'currentColor'}>
71
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
72
+ {title && <title>{title}</title>}
73
+ <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" />
74
+ </svg>
75
+ );
76
+
77
+ case 'ui-chevron':
78
+ return (
79
+ <svg
80
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
81
+ width={width}
82
+ height={height}
83
+ viewBox="0 0 320 512"
84
+ fill={fill ?? 'currentColor'}>
85
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
86
+ {title && <title>{title}</title>}
87
+ <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" />
88
+ </svg>
89
+ );
90
+
91
+ case 'ui-info':
92
+ return (
93
+ <svg
94
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
95
+ width={width}
96
+ height={height}
97
+ viewBox="0 0 512 512"
98
+ fill={fill ?? 'currentColor'}>
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
102
+ d="M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"
103
+ fill="currentColor"
104
+ />
105
+ </svg>
106
+ );
107
+
108
+ case 'ui-calendar':
109
+ return (
110
+ <svg
111
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
112
+ width={width}
113
+ height={height}
114
+ viewBox="0 0 448 512"
115
+ fill={fill ?? 'currentColor'}>
116
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
117
+ {title && <title>{title}</title>}
118
+ <path
119
+ 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"
120
+ fill="currentColor"
121
+ />
122
+ </svg>
123
+ );
124
+
125
+ case 'ui-bed':
126
+ return (
127
+ <svg
128
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
129
+ width={width}
130
+ height={height}
131
+ viewBox="0 0 640 512"
132
+ fill={fill ?? 'currentColor'}>
133
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
134
+ {title && <title>{title}</title>}
135
+ <path
136
+ 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"
137
+ fill={fill ?? 'currentColor'}
138
+ />
139
+ </svg>
140
+ );
141
+
142
+ case 'ui-utensils':
143
+ return (
144
+ <svg
145
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
146
+ width={width}
147
+ height={height}
148
+ viewBox="0 0 416 512"
149
+ fill={fill ?? 'currentColor'}>
150
+ <HTMLComment text="!Font Awesome Free v5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
151
+ {title && <title>{title}</title>}
152
+ <path d="M207.9 15.2c.8 4.7 16.1 94.5 16.1 128.8 0 52.3-27.8 89.6-68.9 104.6L168 486.7c.7 13.7-10.2 25.3-24 25.3H80c-13.7 0-24.7-11.5-24-25.3l12.9-238.1C27.7 233.6 0 196.2 0 144 0 109.6 15.3 19.9 16.1 15.2 19.3-5.1 61.4-5.4 64 16.3v141.2c1.3 3.4 15.1 3.2 16 0 1.4-25.3 7.9-139.2 8-141.8 3.3-20.8 44.7-20.8 47.9 0 .2 2.7 6.6 116.5 8 141.8.9 3.2 14.8 3.4 16 0V16.3c2.6-21.6 44.8-21.4 48-1.1zm119.2 285.7l-15 185.1c-1.2 14 9.9 26 23.9 26h56c13.3 0 24-10.7 24-24V24c0-13.2-10.7-24-24-24-82.5 0-221.4 178.5-64.9 300.9z" />
153
+ </svg>
154
+ );
155
+
156
+ case 'ui-flight':
157
+ return (
158
+ <svg
159
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
160
+ width={width}
161
+ height={height}
162
+ viewBox="0 0 576 512"
163
+ fill={fill ?? 'currentColor'}>
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="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" />
167
+ </svg>
168
+ );
169
+
170
+ case 'ui-transfer':
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
+ fill={fill ?? 'currentColor'}>
178
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
179
+ {title && <title>{title}</title>}
180
+ <path
181
+ 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"
182
+ fill="currentColor"
183
+ />
184
+ </svg>
185
+ );
186
+
187
+ case 'ui-star':
188
+ return (
189
+ <svg
190
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
191
+ width={width}
192
+ height={height}
193
+ viewBox="0 0 576 512"
194
+ fill={fill ?? 'currentColor'}>
195
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
196
+ {title && <title>{title}</title>}
197
+ <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" />
198
+ </svg>
199
+ );
200
+
201
+ case 'ui-halfstar':
202
+ return (
203
+ <svg
204
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
205
+ width={width}
206
+ height={height}
207
+ viewBox="0 0 576 512"
208
+ fill={fill ?? 'currentColor'}>
209
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
210
+ {title && <title>{title}</title>}
211
+ <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" />
212
+ </svg>
213
+ );
214
+
215
+ case 'ui-user':
216
+ return (
217
+ <svg
218
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
219
+ width={width}
220
+ height={height}
221
+ viewBox="0 0 448 512"
222
+ fill={fill ?? 'currentColor'}>
223
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
224
+ {title && <title>{title}</title>}
225
+ <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" />
226
+ </svg>
227
+ );
228
+
229
+ case 'ui-pencil':
230
+ return (
231
+ <svg
232
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
233
+ width={width}
234
+ height={height}
235
+ viewBox="0 0 512 512"
236
+ fill={fill ?? 'currentColor'}>
237
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
238
+ {title && <title>{title}</title>}
239
+ <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" />
240
+ </svg>
241
+ );
242
+
243
+ case 'ui-check':
244
+ return (
245
+ <svg
246
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
247
+ width={width}
248
+ height={height}
249
+ viewBox="0 0 448 512"
250
+ fill={fill ?? 'currentColor'}>
251
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
252
+ {title && <title>{title}</title>}
253
+ <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" />
254
+ </svg>
255
+ );
256
+
257
+ case 'ui-hotel':
258
+ return (
259
+ <svg
260
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
261
+ width={width}
262
+ height={height}
263
+ viewBox="0 0 640 640"
264
+ fill={fill ?? 'currentColor'}>
265
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
266
+ {title && <title>{title}</title>}
267
+ <path
268
+ d="M16 24C16 10.7 26.7 0 40 0L472 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-8 0 0 416 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24L40 512c-13.3 0-24-10.7-24-24s10.7-24 24-24l8 0 0-416-8 0C26.7 48 16 37.3 16 24zm208 88l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0c-8.8 0-16 7.2-16 16zM128 96c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0zm96 112l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0c-8.8 0-16 7.2-16 16zM352 96c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0zM112 208l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0c-8.8 0-16 7.2-16 16zm240-16c-8.8 0-16 7.2-16 16l0 32c0 8.8 7.2 16 16 16l32 0c8.8 0 16-7.2 16-16l0-32c0-8.8-7.2-16-16-16l-32 0zM288 384l43.8 0c9.9 0 17.5-9 14-18.2-13.8-36.1-48.8-61.8-89.7-61.8s-75.9 25.7-89.7 61.8c-3.5 9.2 4.1 18.2 14 18.2l43.8 0 0 80 64 0 0-80z"
269
+ fill="currentColor"
270
+ />
271
+ </svg>
272
+ );
273
+
274
+ case 'ui-location':
275
+ return (
276
+ <svg
277
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
278
+ width={width}
279
+ height={height}
280
+ viewBox="0 0 384 512"
281
+ fill={fill ?? 'currentColor'}>
282
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
283
+ {title && <title>{title}</title>}
284
+ <path
285
+ d="M0 188.6C0 84.4 86 0 192 0S384 84.4 384 188.6c0 119.3-120.2 262.3-170.4 316.8-11.8 12.8-31.5 12.8-43.3 0-50.2-54.5-170.4-197.5-170.4-316.8zM192 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z"
286
+ fill="currentColor"
287
+ />
288
+ </svg>
289
+ );
290
+
291
+ case 'ui-suitcase':
292
+ return (
293
+ <svg
294
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
295
+ width={width}
296
+ height={height}
297
+ viewBox="0 0 512 512"
298
+ fill={fill ?? 'currentColor'}>
299
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
300
+ {title && <title>{title}</title>}
301
+ <path
302
+ d="M200 48l112 0c4.4 0 8 3.6 8 8l0 40-128 0 0-40c0-4.4 3.6-8 8-8zm-56 8l0 424 224 0 0-424c0-30.9-25.1-56-56-56L200 0c-30.9 0-56 25.1-56 56zM416 96l0 384 32 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64l-32 0zM96 480l0-384-32 0C28.7 96 0 124.7 0 160L0 416c0 35.3 28.7 64 64 64l32 0z"
303
+ fill="currentColor"
304
+ />
305
+ </svg>
306
+ );
307
+
308
+ case 'ui-ticket':
309
+ return (
310
+ <svg
311
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
312
+ width={width}
313
+ height={height}
314
+ viewBox="0 0 576 512"
315
+ fill={fill ?? 'currentColor'}>
316
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
317
+ {title && <title>{title}</title>}
318
+ <path d="M64 64C28.7 64 0 92.7 0 128l0 64C0 200.8 7.4 207.7 15.7 210.6 34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320l0 64c0 35.3 28.7 64 64 64l448 0c35.3 0 64-28.7 64-64l0-64c0-8.8-7.4-15.7-15.7-18.6-18.8-6.5-32.3-24.4-32.3-45.4s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6l0-64c0-35.3-28.7-64-64-64L64 64zM416 336l0-160-256 0 0 160 256 0zM112 160c0-17.7 14.3-32 32-32l288 0c17.7 0 32 14.3 32 32l0 192c0 17.7-14.3 32-32 32l-288 0c-17.7 0-32-14.3-32-32l0-192z" />
319
+ </svg>
320
+ );
321
+
322
+ case 'ui-backforward':
323
+ return (
324
+ <svg
325
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
326
+ width={width}
327
+ height={height}
328
+ viewBox="0 0 512 512"
329
+ fill={fill ?? 'currentColor'}>
330
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
331
+ {title && <title>{title}</title>}
332
+ <path
333
+ d="M502.6 150.6l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L402.7 160 32 160c-17.7 0-32-14.3-32-32S14.3 96 32 96l370.7 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3zm-397.3 352l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 352 480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32l-370.7 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z"
334
+ fill="currentColor"
335
+ />
336
+ </svg>
337
+ );
338
+
339
+ case 'ui-car':
340
+ return (
341
+ <svg
342
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
343
+ width={width}
344
+ height={height}
345
+ viewBox="0 0 512 512"
346
+ fill={fill ?? 'currentColor'}>
347
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
348
+ {title && <title>{title}</title>}
349
+ <path
350
+ d="M135.2 117.4l-26.1 74.6 293.8 0-26.1-74.6C372.3 104.6 360.2 96 346.6 96L165.4 96c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32l181.2 0c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2l0 192c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-32-320 0 0 32c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32L0 256c0-26.7 16.4-49.6 39.6-59.2zM128 304a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"
351
+ fill="currentColor"
352
+ />
353
+ </svg>
354
+ );
355
+
356
+ case 'ui-ship':
357
+ return (
358
+ <svg
359
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
360
+ width={width}
361
+ height={height}
362
+ viewBox="0 0 640 512"
363
+ fill={fill ?? 'currentColor'}>
364
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
365
+ {title && <title>{title}</title>}
366
+ <path
367
+ d="M272 0c-26.5 0-48 21.5-48 48l0 16-16 0c-44.2 0-80 35.8-80 80l0 108.8-21.6 8.6c-14.8 5.9-22.5 22.4-17.4 37.5 10.4 31.3 26.8 59.3 47.7 83.1 20.1-9.2 41.7-13.9 63.3-14 33.1-.2 66.3 10.2 94.4 31.4l1.6 1.2 0-215-104 41.6 0-83.2c0-8.8 7.2-16 16-16l224 0c8.8 0 16 7.2 16 16l0 83.2-104-41.6 0 215 1.6-1.2c27.5-20.7 59.9-31.2 92.4-31.4 22.3-.1 44.6 4.5 65.3 14 20.9-23.7 37.3-51.8 47.7-83.1 5-15.2-2.6-31.6-17.4-37.5L512 252.8 512 144c0-44.2-35.8-80-80-80l-16 0 0-16c0-26.5-21.5-48-48-48L272 0zM403.4 476.1c21.3-16.1 49.9-16.1 71.2 0 19 14.4 41.9 28.2 67.2 33.3 26.5 5.4 54.3 .8 80.7-19.1 10.6-8 12.7-23 4.7-33.6s-23-12.7-33.6-4.7c-14.9 11.2-28.6 13.1-42.3 10.3-14.9-3-30.9-11.9-47.8-24.6-38.4-29-90.5-29-129 0-24 18.1-40.7 26.3-54.5 26.3s-30.5-8.2-54.5-26.3c-38.4-29-90.5-29-129 0-21.6 16.3-41.3 25.8-58.9 25.7-9.6-.1-19.9-3-31.2-11.5-10.6-8-25.6-5.9-33.6 4.7S7 482.3 17.6 490.3c19.1 14.4 39.4 21 59.8 21.1 33.9 .2 64.3-17.4 88.1-35.3 21.3-16.1 49.9-16.1 71.2 0 24.2 18.3 52.3 35.9 83.4 35.9s59.1-17.7 83.4-35.9z"
368
+ fill="currentColor"
369
+ />
370
+ </svg>
371
+ );
372
+
373
+ case 'ui-wifi':
374
+ return (
375
+ <svg
376
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
377
+ width={width}
378
+ height={height}
379
+ viewBox="0 0 576 512"
380
+ fill={fill ?? 'currentColor'}>
381
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
382
+ {title && <title>{title}</title>}
383
+ <path
384
+ d="M288 96c-90.9 0-173.2 36-233.7 94.6-12.7 12.3-33 12-45.2-.7s-12-33 .7-45.2C81.7 74.9 179.9 32 288 32S494.3 74.9 566.3 144.7c12.7 12.3 13 32.6 .7 45.2s-32.6 13-45.2 .7C461.2 132 378.9 96 288 96zM240 432a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM168 326.2c-11.7 13.3-31.9 14.5-45.2 2.8s-14.5-31.9-2.8-45.2C161 237.4 221.1 208 288 208s127 29.4 168 75.8c11.7 13.3 10.4 33.5-2.8 45.2s-33.5 10.4-45.2-2.8C378.6 292.9 335.8 272 288 272s-90.6 20.9-120 54.2z"
385
+ fill="currentColor"
386
+ />
387
+ </svg>
388
+ );
389
+
390
+ case 'ui-filter':
391
+ return (
392
+ <svg
393
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
394
+ width={width}
395
+ height={height}
396
+ viewBox="0 0 10.701 9.698"
397
+ fill={fill ?? 'currentColor'}>
398
+ {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
399
+ {title && <title>{title}</title>}
400
+ <g id="filter-solid" transform="translate(-2.667 -5.333)">
401
+ <path
402
+ id="Path_54"
403
+ data-name="Path 54"
404
+ d="M9.355,15.031V10.517l3.836-3.846a.605.605,0,0,0,.177-.435V5.668a.334.334,0,0,0-.334-.334H3a.334.334,0,0,0-.334.334v.558a.6.6,0,0,0,.177.425L6.68,10.544v3.411Z"
405
+ transform="translate(0 0)"
406
+ fill="#12aad8"
407
+ />
408
+ <path
409
+ id="Path_55"
410
+ data-name="Path 55"
411
+ d="M13.194,5.333H2.827a.174.174,0,0,0-.161.174v.575A.445.445,0,0,0,2.8,6.4L6.81,10.413v3.344l2.425,1.207V10.406l4.013-4.013a.451.451,0,0,0,.12-.3V5.507a.174.174,0,0,0-.174-.174Z"
412
+ />
413
+ </g>
414
+ </svg>
415
+ );
416
+
417
+ case 'ui-plane':
418
+ return (
419
+ <svg
420
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
421
+ width={width}
422
+ height={height}
423
+ viewBox="0 0 576 512"
424
+ fill={fill ?? 'currentColor'}>
425
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
426
+ {title && <title>{title}</title>}
427
+ <path
428
+ d="M520 200c30.9 0 56 25.1 56 56s-25.1 56-56 56l-127.3 0-159.2 173.6c-6.1 6.6-14.6 10.4-23.6 10.4l-43.7 0c-10.9 0-18.6-10.7-15.2-21.1l54.3-162.9-99.7 0-52.8 66c-3 3.8-7.6 6-12.5 6l-19.8 0c-10.4 0-18-9.8-15.5-19.9L32 256 5 147.9C2.4 137.8 10.1 128 20.5 128l19.8 0c4.9 0 9.5 2.2 12.5 6l52.8 66 99.7 0-54.3-162.9C147.6 26.7 155.3 16 166.2 16l43.7 0c9 0 17.5 3.8 23.6 10.4L392.7 200 520 200z"
429
+ fill="currentColor"
430
+ />
431
+ </svg>
432
+ );
433
+
434
+ case 'ui-plane-depart':
435
+ return (
436
+ <svg
437
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
438
+ width={width}
439
+ height={height}
440
+ viewBox="0 0 640 512"
441
+ fill={fill ?? 'currentColor'}>
442
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
443
+ {title && <title>{title}</title>}
444
+ <path d="M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2l137.7 0c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48l-57.4 0c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32l576 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 448c-17.7 0-32 14.3-32 32z" />
445
+ </svg>
446
+ );
447
+
448
+ case 'ui-plane-arrive':
449
+ return (
450
+ <svg
451
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
452
+ width={width}
453
+ height={height}
454
+ viewBox="0 0 640 512"
455
+ fill={fill ?? 'currentColor'}>
456
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
457
+ {title && <title>{title}</title>}
458
+ <path d="M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0l40.1 0c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14.1-9.3-22.5zM32 448l576 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 512c-17.7 0-32-14.3-32-32s14.3-32 32-32zm96-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" />
459
+ </svg>
460
+ );
461
+
462
+ case 'ui-clock':
463
+ return (
464
+ <svg
465
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
466
+ width={width}
467
+ height={height}
468
+ viewBox="0 0 19 19"
469
+ fill={fill ?? 'currentColor'}>
470
+ {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
471
+ {title && <title>{title}</title>}
472
+ <g id="Group_56" data-name="Group 56" transform="translate(-390 -665)">
473
+ <circle id="Ellipse_5" data-name="Ellipse 5" cx="9.5" cy="9.5" r="9.5" transform="translate(390 665)" fill="#fff" />
474
+ <g id="time" transform="translate(391.211 666.211)">
475
+ <path
476
+ id="Path_11"
477
+ data-name="Path 11"
478
+ d="M8.289,13.578a5.289,5.289,0,1,1,5.289-5.289A5.289,5.289,0,0,1,8.289,13.578Zm0-9.823a4.534,4.534,0,1,0,4.534,4.534A4.534,4.534,0,0,0,8.289,3.756Z"
479
+ transform="translate(0 0)"
480
+ />
481
+ <path id="Path_12" data-name="Path 12" d="M24.612,16.167,22.5,14.055V10.5h.756v3.241l1.889,1.893Z" transform="translate(-14.589 -5.611)" />
482
+ </g>
483
+ </g>
484
+ </svg>
485
+ );
486
+
487
+ case 'ui-flag':
488
+ return (
489
+ <svg
490
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
491
+ width={width}
492
+ height={height}
493
+ viewBox="0 0 448 512"
494
+ fill={fill ?? 'currentColor'}>
495
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
496
+ {title && <title>{title}</title>}
497
+ <path
498
+ d="M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24L0 488c0 13.3 10.7 24 24 24s24-10.7 24-24l0-100 80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4 44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30l0-279.7c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0-35.1-17.6-75.4-22-113.5-12.5L48 52 48 24zm0 77.5l96.6-24.2c27-6.7 55.5-3.6 80.4 8.8 54.9 27.4 118.7 29.7 175 6.8l0 241.8-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4-48.2-24.1-103.3-30.1-155.6-17.1l-68.6 17.2 0-237z"
499
+ fill="currentColor"
500
+ />
501
+ </svg>
502
+ );
503
+
504
+ case 'ui-moon':
505
+ return (
506
+ <svg
507
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
508
+ width={width}
509
+ height={height}
510
+ viewBox="0 0 512 512"
511
+ fill={fill ?? 'currentColor'}>
512
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
513
+ {title && <title>{title}</title>}
514
+ <path
515
+ d="M239.3 48.7c-107.1 8.5-191.3 98.1-191.3 207.3 0 114.9 93.1 208 208 208 33.3 0 64.7-7.8 92.6-21.7-103.4-23.4-180.6-115.8-180.6-226.3 0-65.8 27.4-125.1 71.3-167.3zM0 256c0-141.4 114.6-256 256-256 19.4 0 38.4 2.2 56.7 6.3 9.9 2.2 17.3 10.5 18.5 20.5s-4 19.8-13.1 24.4c-60.6 30.2-102.1 92.7-102.1 164.8 0 101.6 82.4 184 184 184 5 0 9.9-.2 14.8-.6 10.1-.8 19.6 4.8 23.8 14.1s2 20.1-5.3 27.1C387.3 484.8 324.8 512 256 512 114.6 512 0 397.4 0 256z"
516
+ fill="currentColor"
517
+ />
518
+ </svg>
519
+ );
520
+
521
+ case 'ui-extended':
522
+ return (
523
+ <svg
524
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
525
+ width={width}
526
+ height={height}
527
+ viewBox="0 0 448 512"
528
+ fill={fill ?? 'currentColor'}>
529
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
530
+ {title && <title>{title}</title>}
531
+ <path
532
+ d="M0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 224l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 352l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64z"
533
+ fill="currentColor"
534
+ />
535
+ </svg>
536
+ );
537
+
538
+ case 'ui-compact':
539
+ return (
540
+ <svg
541
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
542
+ width={width}
543
+ height={height}
544
+ viewBox="0 0 448 512"
545
+ fill={fill ?? 'currentColor'}>
546
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
547
+ {title && <title>{title}</title>}
548
+ <path
549
+ d="M384 96l0 128-128 0 0-128 128 0zm0 192l0 128-128 0 0-128 128 0zM192 224l-128 0 0-128 128 0 0 128zM64 288l128 0 0 128-128 0 0-128zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z"
550
+ fill="currentColor"
551
+ />
552
+ </svg>
553
+ );
554
+
555
+ case 'ui-list':
556
+ return (
557
+ <svg
558
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
559
+ width={width}
560
+ height={height}
561
+ viewBox="0 0 512 512"
562
+ fill={fill ?? 'currentColor'}>
563
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
564
+ {title && <title>{title}</title>}
565
+ <path
566
+ d="M64 112c-8.8 0-16 7.2-16 16l0 256c0 8.8 7.2 16 16 16l384 0c8.8 0 16-7.2 16-16l0-256c0-8.8-7.2-16-16-16L64 112zM0 128C0 92.7 28.7 64 64 64l384 0c35.3 0 64 28.7 64 64l0 256c0 35.3-28.7 64-64 64L64 448c-35.3 0-64-28.7-64-64L0 128zM160 320a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm-32-96a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm104-56l160 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-160 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 128l160 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-160 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"
567
+ fill="currentColor"
568
+ />
569
+ </svg>
570
+ );
571
+
572
+ case 'ui-circle-check':
573
+ return (
574
+ <svg
575
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
576
+ width={width}
577
+ height={height}
578
+ viewBox="0 0 512 512"
579
+ fill={fill ?? 'currentColor'}>
580
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
581
+ {title && <title>{title}</title>}
582
+ <path
583
+ d="M256 512a256 256 0 1 1 0-512 256 256 0 1 1 0 512zM374 145.7c-10.7-7.8-25.7-5.4-33.5 5.3L221.1 315.2 169 263.1c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72c5 5 11.8 7.5 18.8 7s13.4-4.1 17.5-9.8L379.3 179.2c7.8-10.7 5.4-25.7-5.3-33.5z"
584
+ fill="currentColor"
585
+ />
586
+ </svg>
587
+ );
588
+
589
+ case 'ui-circle-half':
590
+ return (
591
+ <svg
592
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
593
+ width={width}
594
+ height={height}
595
+ viewBox="0 0 512 512"
596
+ fill={fill ?? 'currentColor'}>
597
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
598
+ {title && <title>{title}</title>}
599
+ <path d="M448 256c0-106-86-192-192-192l0 384c106 0 192-86 192-192zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0z" fill="currentColor" />
600
+ </svg>
601
+ );
602
+
603
+ case 'ui-men':
604
+ return (
605
+ <svg
606
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
607
+ width={width}
608
+ height={height}
609
+ viewBox="0 0 512 512"
610
+ fill={fill ?? 'currentColor'}>
611
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
612
+ {title && <title>{title}</title>}
613
+ <path
614
+ d="M320 32c0-17.7 14.3-32 32-32L480 0c17.7 0 32 14.3 32 32l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-50.7-95 95c19.5 28.4 31 62.7 31 99.8 0 97.2-78.8 176-176 176S32 401.2 32 304 110.8 128 208 128c37 0 71.4 11.4 99.8 31l95-95-50.7 0c-17.7 0-32-14.3-32-32zM208 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z"
615
+ fill="currentColor"
616
+ />
617
+ </svg>
618
+ );
619
+
620
+ case 'ui-women':
621
+ return (
622
+ <svg
623
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
624
+ width={width}
625
+ height={height}
626
+ viewBox="0 0 384 512"
627
+ fill={fill ?? 'currentColor'}>
628
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
629
+ {title && <title>{title}</title>}
630
+ <path
631
+ d="M80 176a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zM223.9 349.1C305.9 334.1 368 262.3 368 176 368 78.8 289.2 0 192 0S16 78.8 16 176c0 86.3 62.1 158.1 144.1 173.1-.1 1-.1 1.9-.1 2.9l0 64-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l32 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 32 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-32 0 0-64c0-1 0-1.9-.1-2.9z"
632
+ fill="currentColor"
633
+ />
634
+ </svg>
635
+ );
636
+
637
+ case 'ui-other':
638
+ return (
639
+ <svg
640
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
641
+ width={width}
642
+ height={height}
643
+ viewBox="0 0 640 512"
644
+ fill={fill ?? 'currentColor'}>
645
+ <HTMLComment text="!Font Awesome Free 6.7.2 - mars-and-venus" />
646
+ {title && <title>{title}</title>}
647
+
648
+ <path
649
+ d="M320 32c0-17.7 14.3-32 32-32l128 0c17.7 0 32 14.3 32 32l0 128c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-50.7-64.2 64.2c19.5 28.4 31 62.7 31 99.8 0 97.2-78.8 176-176 176S32 401.2 32 304s78.8-176 176-176c37.1 0 71.4 11.5 99.8 31l64.2-64.2L320 96c-17.7 0-32-14.3-32-32zM208 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z"
650
+ fill="currentColor"
651
+ />
652
+ </svg>
653
+ );
654
+
655
+ case 'ui-facebook':
656
+ return (
657
+ <svg
658
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
659
+ width={width}
660
+ height={height}
661
+ viewBox="0 0 512 512">
662
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
663
+ {title && <title>{title}</title>}
664
+ <path
665
+ d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5l0-170.3-52.8 0 0-78.2 52.8 0 0-33.7c0-87.1 39.4-127.5 125-127.5 16.2 0 44.2 3.2 55.7 6.4l0 70.8c-6-.6-16.5-1-29.6-1-42 0-58.2 15.9-58.2 57.2l0 27.8 83.6 0-14.4 78.2-69.3 0 0 175.9C413.8 494.8 512 386.9 512 256z"
666
+ fill="currentColor"
667
+ />
668
+ </svg>
669
+ );
670
+
671
+ case 'ui-instagram':
672
+ return (
673
+ <svg
674
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
675
+ width={width}
676
+ height={height}
677
+ viewBox="0 0 448 512">
678
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
679
+ {title && <title>{title}</title>}
680
+ <path
681
+ d="M194.4 211.7a53.3 53.3 0 1 0 59.2 88.6 53.3 53.3 0 1 0 -59.2-88.6zm142.3-68.4c-5.2-5.2-11.5-9.3-18.4-12-18.1-7.1-57.6-6.8-83.1-6.5-4.1 0-7.9 .1-11.2 .1s-7.2 0-11.4-.1c-25.5-.3-64.8-.7-82.9 6.5-6.9 2.7-13.1 6.8-18.4 12s-9.3 11.5-12 18.4c-7.1 18.1-6.7 57.7-6.5 83.2 0 4.1 .1 7.9 .1 11.1s0 7-.1 11.1c-.2 25.5-.6 65.1 6.5 83.2 2.7 6.9 6.8 13.1 12 18.4s11.5 9.3 18.4 12c18.1 7.1 57.6 6.8 83.1 6.5 4.1 0 7.9-.1 11.2-.1s7.2 0 11.4 .1c25.5 .3 64.8 .7 82.9-6.5 6.9-2.7 13.1-6.8 18.4-12s9.3-11.5 12-18.4c7.2-18 6.8-57.4 6.5-83 0-4.2-.1-8.1-.1-11.4s0-7.1 .1-11.4c.3-25.5 .7-64.9-6.5-83-2.7-6.9-6.8-13.1-12-18.4l0 .2zm-67.1 44.5c18.1 12.1 30.6 30.9 34.9 52.2s-.2 43.5-12.3 61.6c-6 9-13.7 16.6-22.6 22.6s-19 10.1-29.6 12.2c-21.3 4.2-43.5-.2-61.6-12.3s-30.6-30.9-34.9-52.2 .2-43.5 12.2-61.6 30.9-30.6 52.2-34.9 43.5 .2 61.6 12.2l.1 0zm29.2-1.3c-3.1-2.1-5.6-5.1-7.1-8.6s-1.8-7.3-1.1-11.1 2.6-7.1 5.2-9.8 6.1-4.5 9.8-5.2 7.6-.4 11.1 1.1 6.5 3.9 8.6 7 3.2 6.8 3.2 10.6c0 2.5-.5 5-1.4 7.3s-2.4 4.4-4.1 6.2-3.9 3.2-6.2 4.2-4.8 1.5-7.3 1.5c-3.8 0-7.5-1.1-10.6-3.2l-.1 0zM448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM357 389c-18.7 18.7-41.4 24.6-67 25.9-26.4 1.5-105.6 1.5-132 0-25.6-1.3-48.3-7.2-67-25.9s-24.6-41.4-25.8-67c-1.5-26.4-1.5-105.6 0-132 1.3-25.6 7.1-48.3 25.8-67s41.5-24.6 67-25.8c26.4-1.5 105.6-1.5 132 0 25.6 1.3 48.3 7.1 67 25.8s24.6 41.4 25.8 67c1.5 26.3 1.5 105.4 0 131.9-1.3 25.6-7.1 48.3-25.8 67l0 .1z"
682
+ fill="currentColor"
683
+ />
684
+ </svg>
685
+ );
686
+
687
+ case 'ui-linkedin':
688
+ return (
689
+ <svg
690
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
691
+ width={width}
692
+ height={height}
693
+ viewBox="0 0 448 512">
694
+ <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
695
+ {title && <title>{title}</title>}
696
+ <path
697
+ d="M64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32zm5 170.2l66.5 0 0 213.8-66.5 0 0-213.8zm71.7-67.7a38.5 38.5 0 1 1 -77 0 38.5 38.5 0 1 1 77 0zM317.9 416l0-104c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9l0 105.8-66.4 0 0-213.8 63.7 0 0 29.2 .9 0c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9l0 117.2-66.4 0z"
698
+ fill="currentColor"
699
+ />
700
+ </svg>
701
+ );
702
+
703
+ case 'ui-search':
704
+ return (
705
+ <svg
706
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
707
+ width={width}
708
+ height={height}
709
+ viewBox="0 0 512 512">
710
+ <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
711
+ {title && <title>{title}</title>}
712
+ <path
713
+ d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"
714
+ fill="currentColor"
715
+ />
716
+ </svg>
717
+ );
718
+
719
+ case 'ui-home':
720
+ return (
721
+ <svg
722
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
723
+ width={width}
724
+ height={height}
725
+ viewBox="0 0 512 512">
726
+ <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
727
+ {title && <title>{title}</title>}
728
+ <path
729
+ d="M277.8 8.6c-12.3-11.4-31.3-11.4-43.5 0l-224 208c-9.6 9-12.8 22.9-8 35.1S18.8 272 32 272l16 0 0 176c0 35.3 28.7 64 64 64l288 0c35.3 0 64-28.7 64-64l0-176 16 0c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8-35.1l-224-208zM240 320l32 0c26.5 0 48 21.5 48 48l0 96-128 0 0-96c0-26.5 21.5-48 48-48z"
730
+ fill="currentColor"
731
+ />
732
+ </svg>
733
+ );
734
+
735
+ case 'ui-arrow':
736
+ return (
737
+ <svg
738
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
739
+ width={width}
740
+ height={height}
741
+ viewBox="0 0 512 512">
742
+ <HTMLComment text="!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
743
+ {title && <title>{title}</title>}
744
+ <path
745
+ d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 105.4-105.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"
746
+ fill="currentColor"
747
+ />
748
+ </svg>
749
+ );
750
+
751
+ case 'ui-bag':
752
+ return (
753
+ <svg
754
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
755
+ width={width}
756
+ height={height}
757
+ viewBox="0 0 512 512">
758
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
759
+ {title && <title>{title}</title>}
760
+ <path
761
+ d="M160 80c0-35.3 28.7-64 64-64s64 28.7 64 64l0 48-128 0 0-48zm-48 48l-64 0c-26.5 0-48 21.5-48 48L0 384c0 53 43 96 96 96l256 0c53 0 96-43 96-96l0-208c0-26.5-21.5-48-48-48l-64 0 0-48c0-61.9-50.1-112-112-112S112 18.1 112 80l0 48zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm152 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"
762
+ fill="currentColor"
763
+ />
764
+ </svg>
765
+ );
766
+
767
+ case 'ui-seat':
768
+ return (
769
+ <svg
770
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
771
+ width={width}
772
+ height={height}
773
+ viewBox="0 0 128 128">
774
+ {title && <title>{title}</title>}
775
+ <path
776
+ d="M44.7,46.3c-2.1-13.7,17.6-17.8,20.8-3.9l5.4,26.8l20.1,0c5.8,0,8.9,4.7,8.9,9v36.4c0,8.9-12.6,8.8-12.6-0.2V86.2H61.6 c-6,0-9.7-4.1-10.6-8.8L44.7,46.3z"
777
+ fill="currentColor"
778
+ />
779
+ <path d="M54.1,30.3c6.5,0,11.8-5.2,11.9-11.8C66,12,60.7,6.7,54.1,6.7c-6.5,0-11.8,5.2-11.8,11.7C42.3,25,47.5,30.3,54.1,30.3" fill="currentColor" />
780
+ <path
781
+ d="M28.4,60.6c-1.4-7.6,8.6-9.4,10-1.8l4.4,23.9c1,5,4.6,9.2,9.8,10.8c1.6,0.5,3.3,0.5,4.8,0.6l14.5,0.1 c7.7,0,7.7,10.1-0.1,10.1l-15.2-0.1c-2.3,0-4.7-0.3-7-1c-9-2.7-15.3-10.1-16.9-18.7L28.4,60.6z"
782
+ fill="currentColor"
783
+ />
784
+ </svg>
785
+ );
786
+
787
+ case 'ui-refund':
788
+ return (
789
+ <svg
790
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
791
+ width={width}
792
+ height={height}
793
+ viewBox="0 0 576 512">
794
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
795
+ {title && <title>{title}</title>}
796
+ <path
797
+ d="M288-16c-13.3 0-24 10.7-24 24l0 12-1.8 0c-36.6 0-66.2 29.7-66.2 66.2 0 33.4 24.9 61.6 58 65.7l61 7.6c5.1 .6 9 5 9 10.2 0 5.7-4.6 10.2-10.2 10.2L240 180c-15.5 0-28 12.5-28 28s12.5 28 28 28l24 0 0 12c0 13.3 10.7 24 24 24s24-10.7 24-24l0-12 1.8 0c36.6 0 66.2-29.7 66.2-66.2 0-33.4-24.9-61.6-58-65.7l-61-7.6c-5.1-.6-9-5-9-10.2 0-5.7 4.6-10.2 10.2-10.2L328 76c15.5 0 28-12.5 28-28s-12.5-28-28-28l-16 0 0-12c0-13.3-10.7-24-24-24zM109.3 341.5L66.7 384 32 384c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l320.5 0c29 0 57.3-9.3 80.7-26.5l126.6-93.3c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416 280 416c-13.3 0-24-10.7-24-24s10.7-24 24-24l72 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-152.2 0c-33.9 0-66.5 13.5-90.5 37.5z"
798
+ fill="currentColor"
799
+ />
800
+ </svg>
801
+ );
802
+
803
+ case 'ui-priority':
804
+ return (
805
+ <svg
806
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
807
+ width={width}
808
+ height={height}
809
+ viewBox="0 0 576 512">
810
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
811
+ {title && <title>{title}</title>}
812
+ <path
813
+ d="M104.5 24a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm-8 181.3L73.9 227.9c-6 6-9.4 14.1-9.4 22.6l0 37.5c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-37.5c0-25.5 10.1-49.9 28.1-67.9l35.1-35.1c22.8-22.8 53.6-35.6 85.8-35.6 36.9 0 71.8 16.8 94.8 45.6L262.3 180c6.1 7.6 15.3 12 25 12l33.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-33.2 0c-29.2 0-56.7-13.3-75-36l-3.8-4.7 0 115.2 34.5 29.6c17.7 15.2 29.3 36.2 32.6 59.3l12.6 88.1c2.5 17.5-9.7 33.7-27.2 36.2s-33.7-9.7-36.2-27.2l-12.6-88.1c-1.1-7.7-5-14.7-10.9-19.8L130 347.5c-21.3-18.2-33.5-44.9-33.5-72.9l0-69.3zM96.6 371c2.4 2.3 4.8 4.6 7.4 6.8l46 39.4-2.2 7.6c-4.5 15.7-12.9 30-24.4 41.5L55.1 534.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l68.3-68.3c3.8-3.8 6.6-8.6 8.1-13.8L96.6 371zM505.5 345c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-102.1 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l102.1 0-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9l-72 72z"
814
+ fill="currentColor"
815
+ />
816
+ </svg>
817
+ );
818
+
819
+ case 'ui-lounge':
820
+ return (
821
+ <svg
822
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
823
+ width={width}
824
+ height={height}
825
+ viewBox="0 0 640 512">
826
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
827
+ {title && <title>{title}</title>}
828
+ <path
829
+ d="M144 272C144 224.7 109.8 185.4 64.8 177.5 72 113.6 126.2 64 192 64l256 0c65.8 0 120 49.6 127.2 113.5-45 8-79.2 47.2-79.2 94.5l0 32-352 0 0-32zM0 384L0 272c0-26.5 21.5-48 48-48s48 21.5 48 48l0 80 448 0 0-80c0-26.5 21.5-48 48-48s48 21.5 48 48l0 112c0 35.3-28.7 64-64 64L64 448c-35.3 0-64-28.7-64-64z"
830
+ fill="currentColor"
831
+ />
832
+ </svg>
833
+ );
834
+
835
+ case 'ui-else':
836
+ return (
837
+ <svg
838
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
839
+ width={width}
840
+ height={height}
841
+ viewBox="0 0 448 512">
842
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
843
+ {title && <title>{title}</title>}
844
+ <path
845
+ d="M0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 0l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 224l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64zM64 352l0 64 64 0 0-64-64 0zm320 0l-192 0 0 64 192 0 0-64z"
846
+ fill="currentColor"
847
+ />
848
+ </svg>
849
+ );
850
+
851
+ case 'ui-excursion':
852
+ return (
853
+ <svg
854
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
855
+ width={width}
856
+ height={height}
857
+ viewBox="0 0 384 512"
858
+ fill={fill ?? 'currentColor'}>
859
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
860
+ {title && <title>{title}</title>}
861
+ <path d="M80.95 472.23c-4.28 17.16 6.14 34.53 23.28 38.81 2.61.66 5.22.95 7.8.95 14.33 0 27.37-9.7 31.02-24.23l25.24-100.97-52.78-52.78-34.56 138.22zm14.89-196.12L137 117c2.19-8.42-3.14-16.95-11.92-19.06-43.88-10.52-88.35 15.07-99.32 57.17L.49 253.24c-2.19 8.42 3.14 16.95 11.92 19.06l63.56 15.25c8.79 2.1 17.68-3.02 19.87-11.44zM368 160h-16c-8.84 0-16 7.16-16 16v16h-34.75l-46.78-46.78C243.38 134.11 228.61 128 212.91 128c-27.02 0-50.47 18.3-57.03 44.52l-26.92 107.72a32.012 32.012 0 0 0 8.42 30.39L224 397.25V480c0 17.67 14.33 32 32 32s32-14.33 32-32v-82.75c0-17.09-6.66-33.16-18.75-45.25l-46.82-46.82c.15-.5.49-.89.62-1.41l19.89-79.57 22.43 22.43c6 6 14.14 9.38 22.62 9.38h48v240c0 8.84 7.16 16 16 16h16c8.84 0 16-7.16 16-16V176c.01-8.84-7.15-16-15.99-16zM240 96c26.51 0 48-21.49 48-48S266.51 0 240 0s-48 21.49-48 48 21.49 48 48 48z" />
862
+ </svg>
863
+ );
864
+
865
+ case 'ui-group':
866
+ return (
867
+ <svg
868
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
869
+ width={width}
870
+ height={height}
871
+ viewBox="0 0 640 512">
872
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
873
+ {title && <title>{title}</title>}
874
+ <path
875
+ d="M72 88a56 56 0 1 1 112 0A56 56 0 1 1 72 88zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3l0-84.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5l0 21.5c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32l0-26.8C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112l32 0c24 0 46.2 7.5 64.4 20.3zM448 416l0-21.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176l32 0c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2l0 26.8c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32zm8-328a56 56 0 1 1 112 0A56 56 0 1 1 456 88zM576 245.7l0 84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM240 304c0 16.2 6 31 16 42.3l0-84.7c-10 11.3-16 26.1-16 42.3zm144-42.3l0 84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2l0 42.8c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32l0-42.8c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112l32 0c61.9 0 112 50.1 112 112z"
876
+ fill="currentColor"
877
+ />
878
+ </svg>
879
+ );
880
+
881
+ case 'ui-error':
882
+ return (
883
+ <svg
884
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
885
+ width={width}
886
+ height={height}
887
+ viewBox="0 0 512 512">
888
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
889
+ {title && <title>{title}</title>}
890
+ <path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24l0 112c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-112c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" />
891
+ </svg>
892
+ );
893
+
894
+ case 'ui-tel':
895
+ return (
896
+ <svg
897
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
898
+ width={width}
899
+ height={height}
900
+ viewBox="0 0 512 512">
901
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
902
+ {title && <title>{title}</title>}
903
+ <path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" />
904
+ </svg>
905
+ );
906
+
907
+ case 'ui-mail':
908
+ return (
909
+ <svg
910
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
911
+ width={width}
912
+ height={height}
913
+ viewBox="0 0 512 512">
914
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
915
+ {title && <title>{title}</title>}
916
+ <path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48L48 64zM0 176L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-208L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" />
917
+ </svg>
918
+ );
919
+
920
+ case 'ui-trashcan':
921
+ return (
922
+ <svg
923
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
924
+ width={width}
925
+ height={height}
926
+ viewBox="0 0 448 512">
927
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
928
+ {title && <title>{title}</title>}
929
+ <path d="M135.2 17.7L128 32 32 32C14.3 32 0 46.3 0 64S14.3 96 32 96l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 0-7.2-14.3C307.4 6.8 296.3 0 284.2 0L163.8 0c-12.1 0-23.2 6.8-28.6 17.7zM416 128L32 128 53.2 467c1.6 25.3 22.6 45 47.9 45l245.8 0c25.3 0 46.3-19.7 47.9-45L416 128z" />
930
+ </svg>
931
+ );
932
+
933
+ case 'ui-payback':
934
+ return (
935
+ <svg
936
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
937
+ width={width}
938
+ height={height}
939
+ viewBox="0 0 20 20.154">
940
+ {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
941
+ {title && <title>{title}</title>}
942
+ <g id="layer1" transform="translate(-205.148 -293.014)">
943
+ <path
944
+ id="path453469"
945
+ d="M223.472,306.895a1.674,1.674,0,0,0-1.188.487l-1.971,1.972a1.67,1.67,0,0,0-.978-.726l-4.652-1.247a2.766,2.766,0,0,0-2.182.331l-2.9,1.832-.235-.408a1.089,1.089,0,0,0-1.471-.394l-2.209,1.274a1.089,1.089,0,0,0-.394,1.471l3.291,5.7a1.088,1.088,0,0,0,1.47.4l2.209-1.276a1.09,1.09,0,0,0,.395-1.471l-.043-.076,1.258-.85,4.63.911a1.742,1.742,0,0,0,1.653-.514c1.493-1.527,2.988-3.048,4.505-4.544l0,0a1.675,1.675,0,0,0-1.189-2.863Zm0,1.332a.336.336,0,0,1,.238.1.323.323,0,0,1,0,.476c-1.525,1.5-3.024,3.031-4.518,4.559a1.847,1.847,0,0,1-.433.134l-4.9-.963a.672.672,0,0,0-.507.1l-1.411.954-1.667-2.886,2.947-1.858a1.411,1.411,0,0,1,1.118-.171l4.652,1.247a.336.336,0,1,1-.175.65l-2.92-.782a.672.672,0,0,0-.348,1.3l2.92.782a1.693,1.693,0,0,0,1.741-.572.672.672,0,0,0,.177-.118l2.85-2.852A.336.336,0,0,1,223.472,308.226Zm-15.14,1.812.325.564a.615.615,0,0,0,.253.438l2.445,4.235-1.745,1.008-3.024-5.237Z"
946
+ transform="translate(0 -4.554)"
947
+ fill-rule="evenodd"
948
+ />
949
+ <path
950
+ id="path453459"
951
+ d="M223.672,301.014a.672.672,0,1,0,0,1.344h1.344a.672.672,0,1,0,0-1.344Z"
952
+ transform="translate(-5.857 -2.625)"
953
+ fill-rule="evenodd"
954
+ />
955
+ <path
956
+ id="path453437"
957
+ d="M223.672,297.014a.672.672,0,0,0,0,1.344h1.344a.672.672,0,0,0,0-1.344Z"
958
+ transform="translate(-5.857 -1.312)"
959
+ fill-rule="evenodd"
960
+ />
961
+ <path
962
+ id="rect18334"
963
+ d="M222.7,293.014a4.7,4.7,0,1,0,4.7,4.7A4.714,4.714,0,0,0,222.7,293.014Zm0,1.344a3.359,3.359,0,1,1-3.359,3.359A3.349,3.349,0,0,1,222.7,294.357Z"
964
+ transform="translate(-4.217)"
965
+ fill-rule="evenodd"
966
+ />
967
+ </g>
968
+ </svg>
969
+ );
970
+
971
+ case 'ui-backpack':
972
+ return (
973
+ <svg
974
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
975
+ width={width}
976
+ height={height}
977
+ viewBox="0 0 14.499 16.11">
978
+ {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
979
+ {title && <title>{title}</title>}
980
+ <path
981
+ id="Path_2"
982
+ data-name="Path 2"
983
+ d="M22.444,28.805A.805.805,0,0,0,21.639,28H16.806a.806.806,0,0,0-.806.806v1.611h6.444ZM16,32.027h6.444v2.417H16Z"
984
+ transform="translate(-11.972 -18.334)"
985
+ />
986
+ <path
987
+ id="Path_3"
988
+ data-name="Path 3"
989
+ d="M20.5,12.055a4.837,4.837,0,0,0-4.028-4.761V6.417A2.419,2.419,0,0,0,14.055,4H12.444a2.419,2.419,0,0,0-2.417,2.417v.878A4.837,4.837,0,0,0,6,12.055V18.5A1.613,1.613,0,0,0,7.611,20.11h.806V14.472a2.419,2.419,0,0,1,2.417-2.417h4.833a2.419,2.419,0,0,1,2.417,2.417V20.11h.806A1.613,1.613,0,0,0,20.5,18.5ZM11.639,6.417a.806.806,0,0,1,.806-.806h1.611a.805.805,0,0,1,.805.806v.806H11.639Z"
990
+ transform="translate(-6 -4)"
991
+ />
992
+ </svg>
993
+ );
994
+
995
+ case 'ui-business-lounge':
996
+ return (
997
+ <svg
998
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
999
+ width={width}
1000
+ height={height}
1001
+ viewBox="0 0 20 19.999">
1002
+ {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
1003
+ {title && <title>{title}</title>}
1004
+ <g id="waiting-room-svgrepo-com" transform="translate(0 -0.008)">
1005
+ <g id="Group_46" data-name="Group 46" transform="translate(0 0.008)">
1006
+ <g id="Group_45" data-name="Group 45" transform="translate(0)">
1007
+ <path
1008
+ id="Path_33"
1009
+ data-name="Path 33"
1010
+ d="M65.683,110.007a1.667,1.667,0,1,0-1.667-1.667A1.666,1.666,0,0,0,65.683,110.007Z"
1011
+ transform="translate(-61.515 -102.507)"
1012
+ />
1013
+ <path
1014
+ id="Path_34"
1015
+ data-name="Path 34"
1016
+ d="M6.25,242.2H2.418L.824,235.025a.417.417,0,1,0-.814.181l1.657,7.455v2.454a.417.417,0,1,0,.833,0v-2.083H5v2.083a.417.417,0,1,0,.833,0v-2.083h.417a.417.417,0,0,0,0-.833Z"
1017
+ transform="translate(0 -225.532)"
1018
+ />
1019
+ <path
1020
+ id="Path_35"
1021
+ data-name="Path 35"
1022
+ d="M281.933.008a4.583,4.583,0,1,0,4.583,4.583A4.588,4.588,0,0,0,281.933.008Zm1.667,5h-1.667a.417.417,0,0,1-.417-.417v-2.5a.417.417,0,0,1,.833,0V4.175h1.25a.417.417,0,1,1,0,.833Z"
1023
+ transform="translate(-266.516 -0.008)"
1024
+ />
1025
+ <path
1026
+ id="Path_36"
1027
+ data-name="Path 36"
1028
+ d="M70.265,218.341H67.348v-3.333a1.667,1.667,0,0,0-3.333,0v4.583a1.251,1.251,0,0,0,1.25,1.25h3.75v2.917a1.25,1.25,0,1,0,2.5,0v-4.167A1.251,1.251,0,0,0,70.265,218.341Z"
1029
+ transform="translate(-61.514 -205.008)"
1030
+ />
1031
+ </g>
1032
+ </g>
1033
+ </g>
1034
+ </svg>
1035
+ );
1036
+
1037
+ case 'ui-shopping-bag':
1038
+ return (
1039
+ <svg
1040
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1041
+ width={width}
1042
+ height={height}
1043
+ viewBox="0 0 13.299 14.65">
1044
+ {/* <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." /> */}
1045
+ {title && <title>{title}</title>}
1046
+ <path
1047
+ id="Path_22"
1048
+ data-name="Path 22"
1049
+ d="M9.135.6A3.523,3.523,0,0,0,5.612,4.123V5.691A2.455,2.455,0,0,0,5,5.869,2.967,2.967,0,0,0,3.842,6.8,6.951,6.951,0,0,0,3,9.393c-.452,2.056-.678,3.083-.392,3.885A2.967,2.967,0,0,0,3.835,14.8c.721.451,1.774.451,3.878.451h2.843c2.1,0,3.157,0,3.878-.451a2.967,2.967,0,0,0,1.223-1.521c.285-.8.059-1.829-.392-3.885a6.951,6.951,0,0,0-.837-2.59,2.967,2.967,0,0,0-1.162-.934,2.456,2.456,0,0,0-.608-.178V4.123A3.523,3.523,0,0,0,9.135.6Zm2.411,5.012V4.123a2.411,2.411,0,0,0-4.821,0V5.612c.287,0,.613,0,.989,0h2.843C10.933,5.607,11.259,5.607,11.546,5.612ZM6.168,8.574a.742.742,0,1,0-.742-.742A.742.742,0,0,0,6.168,8.574Zm6.676-.742A.742.742,0,1,1,12.1,7.09.742.742,0,0,1,12.844,7.832Z"
1050
+ transform="translate(-2.486 -0.6)"
1051
+ fill-rule="evenodd"
1052
+ />
1053
+ </svg>
1054
+ );
1055
+
1056
+ case 'ui-tooltip':
1057
+ return (
1058
+ <svg
1059
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1060
+ width={width}
1061
+ height={height}
1062
+ viewBox="0 0 512 512">
1063
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
1064
+ {title && <title>{title}</title>}
1065
+ <path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" />
1066
+ </svg>
1067
+ );
1068
+
1069
+ case 'ui-qsm-location':
1070
+ return (
1071
+ <svg
1072
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1073
+ width={width}
1074
+ height={height}
1075
+ viewBox="0 0 384 512">
1076
+ <HTMLComment text="!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc." />
1077
+ {title && <title>{title}</title>}
1078
+ <path d="M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" />
1079
+ </svg>
1080
+ );
1081
+
1082
+ case 'ui-triangle-error':
1083
+ return (
1084
+ <svg
1085
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1086
+ width={width}
1087
+ height={height}
1088
+ viewBox="0 0 512 512"
1089
+ fill={fill ?? 'currentColor'}>
1090
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
1091
+ {title && <title>{title}</title>}
1092
+ <path d="M256 0c14.7 0 28.2 8.1 35.2 21l216 400c6.7 12.4 6.4 27.4-.8 39.5S486.1 480 472 480L40 480c-14.1 0-27.2-7.4-34.4-19.5s-7.5-27.1-.8-39.5l216-400c7-12.9 20.5-21 35.2-21zm0 352a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.5 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z" />
1093
+ </svg>
1094
+ );
1095
+
1096
+ case 'ui-shopping-cart':
1097
+ return (
1098
+ <svg
1099
+ className={['icon', `icon--${name}`, className].filter((className) => !isEmpty(className)).join(' ')}
1100
+ width={width}
1101
+ height={height}
1102
+ viewBox="0 0 640 512"
1103
+ fill={fill ?? 'currentColor'}>
1104
+ <HTMLComment text="!Font Awesome Free v7.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2026 Fonticons, Inc." />
1105
+ {title && <title>{title}</title>}
1106
+ <path d="M24-16C10.7-16 0-5.3 0 8S10.7 32 24 32l45.3 0c3.9 0 7.2 2.8 7.9 6.6l52.1 286.3c6.2 34.2 36 59.1 70.8 59.1L456 384c13.3 0 24-10.7 24-24s-10.7-24-24-24l-255.9 0c-11.6 0-21.5-8.3-23.6-19.7l-5.1-28.3 303.6 0c30.8 0 57.2-21.9 62.9-52.2L568.9 69.9C572.6 50.2 557.5 32 537.4 32l-412.7 0-.4-2c-4.8-26.6-28-46-55.1-46L24-16zM208 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm224 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" />
1107
+ </svg>
1108
+ );
1109
+ default:
1110
+ return null;
1111
+ }
1112
+ };
1113
+
1114
+ export default Icon;