-
Notifications
You must be signed in to change notification settings - Fork 365
/
componentsNames.ts
794 lines (398 loc) · 24.4 KB
/
componentsNames.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
import FUIWithPreviousAndNextLink from "./previewsComponents/FUIWithPreviousAndNextLink.jsx";
import FUITableWithBorderedColumn from "./previewsComponents/FUITableWithBorderedColumn.jsx";
import FUITestimonialCentered from "./previewsComponents/FUITestimonialCentered.jsx";
import FUIAvatarsWithInfo from "./previewsComponents/FUIAvatarsWithInfo.jsx";
import FUIDefaultSelectMenu from "./previewsComponents/FUIDefaultSelectMenu.jsx";
import FUIPrimaryButtons from "./previewsComponents/FUIPrimaryButtons.jsx";
import FUIDarkCta from "./previewsComponents/FUIDarkCta.jsx";
import FUITestimonialWithBackgroundColor from "./previewsComponents/FUITestimonialWithBackgroundColor.jsx";
import FUIFooterWithNewsletter from "./previewsComponents/FUIFooterWithNewsletter.jsx";
import FUISidebarWithItemsInBottom from "./previewsComponents/FUISidebarWithItemsInBottom.jsx";
import FUIBasicContextMenu from "./previewsComponents/FUIBasicContextMenu.jsx";
import FUIPricingCardsRadioGroup from "./previewsComponents/FUIPricingCardsRadioGroup.jsx";
import FUILoginWithGridProvider from "./previewsComponents/FUILoginWithGridProvider.jsx";
import FUINavbarWithAdvencedDropdown from "./previewsComponents/FUINavbarWithAdvencedDropdown.jsx";
import FUISelectMenuWithSearchBox2 from "./previewsComponents/FUISelectMenuWithSearchBox2.jsx";
import FUISidebarWithSubmenu from "./previewsComponents/FUISidebarWithSubmenu.jsx";
import FUIStatsWithTitleAndDescription from "./previewsComponents/FUIStatsWithTitleAndDescription.jsx";
import FUIBasicPricingSection from "./previewsComponents/FUIBasicPricingSection.jsx";
import FUIBannerWithUnderlineLink from "./previewsComponents/FUIBannerWithUnderlineLink.jsx";
import FUIVerticalTabs from "./previewsComponents/FUIVerticalTabs.jsx";
import FUIDarkFooter from "./previewsComponents/FUIDarkFooter.jsx";
import FUIPrimaryFaqs from "./previewsComponents/FUIPrimaryFaqs.jsx";
import FUISidebarWithListOfLessons from "./previewsComponents/FUISidebarWithListOfLessons.jsx";
import FUINewsletterStacked from "./previewsComponents/FUINewsletterStacked.jsx";
import FUINavbarWithSearchBox from "./previewsComponents/FUINavbarWithSearchBox.jsx";
import FUI404PageWithLogo from "./previewsComponents/FUI404PageWithLogo.jsx";
import FUIContactSectionWithDividedColumns from "./previewsComponents/FUIContactSectionWithDividedColumns.jsx";
import FUILogoGridWithTitle from "./previewsComponents/FUILogoGridWithTitle.jsx";
import FUI404PageWithImage from "./previewsComponents/FUI404PageWithImage.jsx";
import FUISidebarWithTooltip from "./previewsComponents/FUISidebarWithTooltip.jsx";
import FUISecondaryFooter from "./previewsComponents/FUISecondaryFooter.jsx";
import FUINavbarWithSubmenu from "./previewsComponents/FUINavbarWithSubmenu.jsx";
import FUICtaWithLinkOnTheSide from "./previewsComponents/FUICtaWithLinkOnTheSide.jsx";
import FUITestimonialGrid from "./previewsComponents/FUITestimonialGrid.jsx";
import FUIFeatureSectionWithCards from "./previewsComponents/FUIFeatureSectionWithCards.jsx";
import FUIDividedFeatureSection from "./previewsComponents/FUIDividedFeatureSection.jsx";
import FUIPricingSectionWithBadge from "./previewsComponents/FUIPricingSectionWithBadge.jsx";
import FUITeamSectionCentredWithLargeImages from "./previewsComponents/FUITeamSectionCentredWithLargeImages.jsx";
import FUIDarkStatsWithInCards from "./previewsComponents/FUIDarkStatsWithInCards.jsx";
import FUIStepsWithTitlesOnTheBottom from "./previewsComponents/FUIStepsWithTitlesOnTheBottom.jsx";
import FUINewsletterWithDescription from "./previewsComponents/FUINewsletterWithDescription.jsx";
import FUISignUpWithNameEmailPasswordOrGoogle from "./previewsComponents/FUISignUpWithNameEmailPasswordOrGoogle.jsx";
import FUISignUpWithLeftBackground from "./previewsComponents/FUISignUpWithLeftBackground.jsx";
import FUIAlertInfoLinear from "./previewsComponents/FUIAlertInfoLinear.jsx";
import FUIFooterWithDescriptionAndTitle from "./previewsComponents/FUIFooterWithDescriptionAndTitle.jsx";
import FUITabsWithIcons from "./previewsComponents/FUITabsWithIcons.jsx";
import FUIContextMenuWithSubmenu from "./previewsComponents/FUIContextMenuWithSubmenu.jsx";
import FUINavbarWithBlackButton from "./previewsComponents/FUINavbarWithBlackButton.jsx";
import FUIVerificationCodeInput from "./previewsComponents/FUIVerificationCodeInput.jsx";
import FUITableWithManageButton from "./previewsComponents/FUITableWithManageButton.jsx";
import FUIHeroSectionWithVideo from "./previewsComponents/FUIHeroSectionWithVideo.jsx";
import FUIPrimaryNavbar from "./previewsComponents/FUIPrimaryNavbar.jsx";
import FUITableWithAvatarsAndEditDelete from "./previewsComponents/FUITableWithAvatarsAndEditDelete.jsx";
import FUITeamSectionWithAvatars from "./previewsComponents/FUITeamSectionWithAvatars.jsx";
import FUIButtonsWithLowColors from "./previewsComponents/FUIButtonsWithLowColors.jsx";
import FUIStepsWithTitlesOnTheSide from "./previewsComponents/FUIStepsWithTitlesOnTheSide.jsx";
import FUIPasswordInput from "./previewsComponents/FUIPasswordInput.jsx";
import FUITabsWithBackgroundColor from "./previewsComponents/FUITabsWithBackgroundColor.jsx";
import FUIModalDialog from "./previewsComponents/FUIModalDialog.jsx";
import FUISecondaryButtons from "./previewsComponents/FUISecondaryButtons.jsx";
import FUIHeroSectionWithGradientBackground from "./previewsComponents/FUIHeroSectionWithGradientBackground.jsx";
import FUIPricingSectionWithOnePlan from "./previewsComponents/FUIPricingSectionWithOnePlan.jsx";
import FUIPrimaryCta from "./previewsComponents/FUIPrimaryCta.jsx";
import FUISectionHeaderWithButtonsAndNavigations from "./previewsComponents/FUISectionHeaderWithButtonsAndNavigations.jsx";
import FUIDarkPricingSectionWithTwoPlans from "./previewsComponents/FUIDarkPricingSectionWithTwoPlans.jsx";
import FUITestimonialCenteredWithLogo from "./previewsComponents/FUITestimonialCenteredWithLogo.jsx";
import FUIButtonsWithIcons from "./previewsComponents/FUIButtonsWithIcons.jsx";
import FUIAvatarWithLinkAndButton from "./previewsComponents/FUIAvatarWithLinkAndButton.jsx";
import FUIAlertSuccessWithLink from "./previewsComponents/FUIAlertSuccessWithLink.jsx";
import FUIDarkContactSection from "./previewsComponents/FUIDarkContactSection.jsx";
import FUIDefaultButtonsWithIcons from "./previewsComponents/FUIDefaultButtonsWithIcons.jsx";
import FUISearchInputWithSelectMenu from "./previewsComponents/FUISearchInputWithSelectMenu.jsx";
import FUIFeatureSectionWithLinks from "./previewsComponents/FUIFeatureSectionWithLinks.jsx";
import FUITableWithTabs from "./previewsComponents/FUITableWithTabs.jsx";
import FUIAlertSuccess from "./previewsComponents/FUIAlertSuccess.jsx";
import FUIDarkFaqsWithDividedRows from "./previewsComponents/FUIDarkFaqsWithDividedRows.jsx";
import FUIModalWithNewsletter from "./previewsComponents/FUIModalWithNewsletter.jsx";
import FUIAlertDangerWithLink from "./previewsComponents/FUIAlertDangerWithLink.jsx";
import FUITableWithEditAndDelete from "./previewsComponents/FUITableWithEditAndDelete.jsx";
import FUIStatsWithImage from "./previewsComponents/FUIStatsWithImage.jsx";
import FUISectionHeaderWithDescriptionAndButton from "./previewsComponents/FUISectionHeaderWithDescriptionAndButton.jsx";
import FUIPrimaryHeroSection from "./previewsComponents/FUIPrimaryHeroSection.jsx";
import FUIPrimarySelectMenu from "./previewsComponents/FUIPrimarySelectMenu.jsx";
import FUIBannerCentredWithLink from "./previewsComponents/FUIBannerCentredWithLink.jsx";
import FUINewsletterWithAGradientBackground from "./previewsComponents/FUINewsletterWithAGradientBackground.jsx";
import FUIUsernameInput from "./previewsComponents/FUIUsernameInput.jsx";
import FUILoginWithListedProvider from "./previewsComponents/FUILoginWithListedProvider.jsx";
import FUIAmountInput from "./previewsComponents/FUIAmountInput.jsx";
import FUIAvatarsWithNotification from "./previewsComponents/FUIAvatarsWithNotification.jsx";
import FUITestimonialWithSlider from "./previewsComponents/FUITestimonialWithSlider.jsx";
import FUIJobCards from "./previewsComponents/FUIJobCards.jsx";
import FUIContactSectionWithImage from "./previewsComponents/FUIContactSectionWithImage.jsx";
import FUIBasicStats from "./previewsComponents/FUIBasicStats.jsx";
import FUIHeroSectionWithLogoClouds from "./previewsComponents/FUIHeroSectionWithLogoClouds.jsx";
import FUIPricingSectionWithTwoPlans from "./previewsComponents/FUIPricingSectionWithTwoPlans.jsx";
import FUIFooterWithDownloadLinks from "./previewsComponents/FUIFooterWithDownloadLinks.jsx";
import FUISearchInput from "./previewsComponents/FUISearchInput.jsx";
import FUIBasic404Page from "./previewsComponents/FUIBasic404Page.jsx";
import FUINewsletterWithBackground from "./previewsComponents/FUINewsletterWithBackground.jsx";
import FUIButtonsWithShadow from "./previewsComponents/FUIButtonsWithShadow.jsx";
import FUIAlertWarning from "./previewsComponents/FUIAlertWarning.jsx";
import FUIFaqsWithShadow from "./previewsComponents/FUIFaqsWithShadow.jsx";
import FUISelectMenuWithSearchBox from "./previewsComponents/FUISelectMenuWithSearchBox.jsx";
import FUIBasicTabs from "./previewsComponents/FUIBasicTabs.jsx";
import FUISecondaryCta from "./previewsComponents/FUISecondaryCta.jsx";
import FUIModalDanger from "./previewsComponents/FUIModalDanger.jsx";
import FUIFaqsWithSearchBox from "./previewsComponents/FUIFaqsWithSearchBox.jsx";
import FUIDarkFeatureSection from "./previewsComponents/FUIDarkFeatureSection.jsx";
import FUIAmountInputWithSelectInRight from "./previewsComponents/FUIAmountInputWithSelectInRight.jsx";
import FUIEmailInput from "./previewsComponents/FUIEmailInput.jsx";
import FUIPricingSectionWithTable from "./previewsComponents/FUIPricingSectionWithTable.jsx";
import FUICtaWithImage from "./previewsComponents/FUICtaWithImage.jsx";
import FUIPaginationWithCurrentPageInfo from "./previewsComponents/FUIPaginationWithCurrentPageInfo.jsx";
import FUIAlertDanger from "./previewsComponents/FUIAlertDanger.jsx";
import FUIStepsWithChevrons from "./previewsComponents/FUIStepsWithChevrons.jsx";
import FUIDisabledButtons from "./previewsComponents/FUIDisabledButtons.jsx";
import FUILoginWithGoogleProvider from "./previewsComponents/FUILoginWithGoogleProvider.jsx";
import FUITableWithAvatars from "./previewsComponents/FUITableWithAvatars.jsx";
import FUISectionHeaderWithNavigations from "./previewsComponents/FUISectionHeaderWithNavigations.jsx";
import FUIPrimaryFooter from "./previewsComponents/FUIPrimaryFooter.jsx";
import FUISecondaryNavbar from "./previewsComponents/FUISecondaryNavbar.jsx";
import FUIJobCardsWithInformation from "./previewsComponents/FUIJobCardsWithInformation.jsx";
import FUIBlogCardsPrimary from "./previewsComponents/FUIBlogCardsPrimary.jsx";
import FUIDarkLogoGrid from "./previewsComponents/FUIDarkLogoGrid.jsx";
import FUIPaginationWithPreviousAndNextLink from "./previewsComponents/FUIPaginationWithPreviousAndNextLink.jsx";
import FUIModalWithShareableLink from "./previewsComponents/FUIModalWithShareableLink.jsx";
import FUISignUpWithGoogleProvider from "./previewsComponents/FUISignUpWithGoogleProvider.jsx";
import FUIFeatureSectionWithThreeColumns from "./previewsComponents/FUIFeatureSectionWithThreeColumns.jsx";
import FUITabsWithoutUnderline from "./previewsComponents/FUITabsWithoutUnderline.jsx";
import FUIStepsWithLine from "./previewsComponents/FUIStepsWithLine.jsx";
import FUIContactSectionWithInfo from "./previewsComponents/FUIContactSectionWithInfo.jsx";
import FUIRoundedButtons from "./previewsComponents/FUIRoundedButtons.jsx";
import FUICtaWithBlueBackground from "./previewsComponents/FUICtaWithBlueBackground.jsx";
import FUIWebsiteUrlInput from "./previewsComponents/FUIWebsiteUrlInput.jsx";
import FUIFeatureSectionWithCheckIcons from "./previewsComponents/FUIFeatureSectionWithCheckIcons.jsx";
import FUIFeatureSectionWithImage from "./previewsComponents/FUIFeatureSectionWithImage.jsx";
import FUIFaqsWithDividedRows from "./previewsComponents/FUIFaqsWithDividedRows.jsx";
import FUIBannerWithLink from "./previewsComponents/FUIBannerWithLink.jsx";
import FUIBasicSteps from "./previewsComponents/FUIBasicSteps.jsx";
import FUISecondaryFaqs from "./previewsComponents/FUISecondaryFaqs.jsx";
import FUITestimonialWithThreeColumn from "./previewsComponents/FUITestimonialWithThreeColumn.jsx";
import FUITeamSectionWithInfo from "./previewsComponents/FUITeamSectionWithInfo.jsx";
import FUIDarkCtaWithLinkOnTheSide from "./previewsComponents/FUIDarkCtaWithLinkOnTheSide.jsx";
import FUITeamWithLargeAvatars from "./previewsComponents/FUITeamWithLargeAvatars.jsx";
import FUIAvatarGroupStackedWithText from "./previewsComponents/FUIAvatarGroupStackedWithText.jsx";
import FUIBlogCardsSecondary from "./previewsComponents/FUIBlogCardsSecondary.jsx";
import FUIStatsOnTheSide from "./previewsComponents/FUIStatsOnTheSide.jsx";
import FUIDarkHeroSection from "./previewsComponents/FUIDarkHeroSection.jsx";
import FUIColorPickerRadioGroup from "./previewsComponents/FUIColorPickerRadioGroup.jsx";
import FUIAlertInfo from "./previewsComponents/FUIAlertInfo.jsx";
import FUIStatusSelectMenu from "./previewsComponents/FUIStatusSelectMenu.jsx";
import FUIAlertDangerWithDescription from "./previewsComponents/FUIAlertDangerWithDescription.jsx";
import FUITeamMembersCard from "./previewsComponents/FUITeamMembersCard.jsx";
import FUIFaqsWithTitles from "./previewsComponents/FUIFaqsWithTitles.jsx";
import FUIDividedLogoGrid from "./previewsComponents/FUIDividedLogoGrid.jsx";
import FUIPhoneNumberInput from "./previewsComponents/FUIPhoneNumberInput.jsx";
import FUISelectMenuWithIcon from "./previewsComponents/FUISelectMenuWithIcon.jsx";
import FUICentredCtaWithTwoLinks from "./previewsComponents/FUICentredCtaWithTwoLinks.jsx";
import FUIAvatarGroupStacked from "./previewsComponents/FUIAvatarGroupStacked.jsx";
import FUICentered404PageWithTowLinks from "./previewsComponents/FUICentered404PageWithTowLinks.jsx";
import FUIAlertInfoWithLink from "./previewsComponents/FUIAlertInfoWithLink.jsx";
import FUIBlogSectionWithPostsCard from "./previewsComponents/FUIBlogSectionWithPostsCard.jsx";
import FUIHeroSectionWithImage from "./previewsComponents/FUIHeroSectionWithImage.jsx";
import FUISectionHeaderWithSearchBox from "./previewsComponents/FUISectionHeaderWithSearchBox.jsx";
import FUIBasicTable from "./previewsComponents/FUIBasicTable.jsx";
import FUIBasicFeatureSection from "./previewsComponents/FUIBasicFeatureSection.jsx";
import FUIModalSuccess from "./previewsComponents/FUIModalSuccess.jsx";
import FUI404PageWithListOfItems from "./previewsComponents/FUI404PageWithListOfItems.jsx";
import FUIBannerCentred from "./previewsComponents/FUIBannerCentred.jsx";
import FUICenteredContactSection from "./previewsComponents/FUICenteredContactSection.jsx";
import FUISecondaryNewsletter from "./previewsComponents/FUISecondaryNewsletter.jsx";
import FUIHeroSectionWithBottomImage from "./previewsComponents/FUIHeroSectionWithBottomImage.jsx";
import FUICentredCta from "./previewsComponents/FUICentredCta.jsx";
import FUIAvatars from "./previewsComponents/FUIAvatars.jsx";
import FUIContactSectionWithFourColumns from "./previewsComponents/FUIContactSectionWithFourColumns.jsx";
import FUISectionHeaderWithButtons from "./previewsComponents/FUISectionHeaderWithButtons.jsx";
import FUIBannerCentredWithBadge from "./previewsComponents/FUIBannerCentredWithBadge.jsx";
import FUIPrimaryNewsletter from "./previewsComponents/FUIPrimaryNewsletter.jsx";
import FUISelectMenuWithAvatars from "./previewsComponents/FUISelectMenuWithAvatars.jsx";
import FUIPaymentCardsRadioGroup from "./previewsComponents/FUIPaymentCardsRadioGroup.jsx";
import FUIBasicLoginForm from "./previewsComponents/FUIBasicLoginForm.jsx";
import FUILogoGridWithTowRows from "./previewsComponents/FUILogoGridWithTowRows.jsx";
import FUIDarkStats from "./previewsComponents/FUIDarkStats.jsx";
import FUIAlertWarningWithBorder from "./previewsComponents/FUIAlertWarningWithBorder.jsx";
import FUIButtonsWithIconAndText from "./previewsComponents/FUIButtonsWithIconAndText.jsx";
import FUIIntegrationsCard from "./previewsComponents/FUIIntegrationsCard.jsx";
import FUITeamSectionWithCentredAvatars from "./previewsComponents/FUITeamSectionWithCentredAvatars.jsx";
import FUIAvatarGroupStackedWithJoinButton from "./previewsComponents/FUIAvatarGroupStackedWithJoinButton.jsx";
import FUIUploadFileCard from "./previewsComponents/FUIUploadFileCard.jsx";
import FUISearchInputWithSelectMenuAndAvatars from "./previewsComponents/FUISearchInputWithSelectMenuAndAvatars.jsx";
import FUINavbarWithDividedItems from "./previewsComponents/FUINavbarWithDividedItems.jsx";
import FUIBasicRadioGroup from "./previewsComponents/FUIBasicRadioGroup.jsx";
import FUITableWithCheckbox from "./previewsComponents/FUITableWithCheckbox.jsx";
import FUISecondaryHeroSection from "./previewsComponents/FUISecondaryHeroSection.jsx";
import FUIPaginationStacked from "./previewsComponents/FUIPaginationStacked.jsx";
import FUITeamSectionWithVerticalImages from "./previewsComponents/FUITeamSectionWithVerticalImages.jsx";
import FUIVerticalTabsWithoutLine from "./previewsComponents/FUIVerticalTabsWithoutLine.jsx";
import FUILogoGridWithHeader from "./previewsComponents/FUILogoGridWithHeader.jsx";
export default {
FUIWithPreviousAndNextLink,
FUITableWithBorderedColumn,
FUITestimonialCentered,
FUIAvatarsWithInfo,
FUIDefaultSelectMenu,
FUIPrimaryButtons,
FUIDarkCta,
FUITestimonialWithBackgroundColor,
FUIFooterWithNewsletter,
FUISidebarWithItemsInBottom,
FUIBasicContextMenu,
FUIPricingCardsRadioGroup,
FUILoginWithGridProvider,
FUINavbarWithAdvencedDropdown,
FUISelectMenuWithSearchBox2,
FUISidebarWithSubmenu,
FUIStatsWithTitleAndDescription,
FUIBasicPricingSection,
FUIBannerWithUnderlineLink,
FUIVerticalTabs,
FUIDarkFooter,
FUIPrimaryFaqs,
FUISidebarWithListOfLessons,
FUINewsletterStacked,
FUINavbarWithSearchBox,
FUI404PageWithLogo,
FUIContactSectionWithDividedColumns,
FUILogoGridWithTitle,
FUI404PageWithImage,
FUISidebarWithTooltip,
FUISecondaryFooter,
FUINavbarWithSubmenu,
FUICtaWithLinkOnTheSide,
FUITestimonialGrid,
FUIFeatureSectionWithCards,
FUIDividedFeatureSection,
FUIPricingSectionWithBadge,
FUITeamSectionCentredWithLargeImages,
FUIDarkStatsWithInCards,
FUIStepsWithTitlesOnTheBottom,
FUINewsletterWithDescription,
FUISignUpWithNameEmailPasswordOrGoogle,
FUISignUpWithLeftBackground,
FUIAlertInfoLinear,
FUIFooterWithDescriptionAndTitle,
FUITabsWithIcons,
FUIContextMenuWithSubmenu,
FUINavbarWithBlackButton,
FUIVerificationCodeInput,
FUITableWithManageButton,
FUIHeroSectionWithVideo,
FUIPrimaryNavbar,
FUITableWithAvatarsAndEditDelete,
FUITeamSectionWithAvatars,
FUIButtonsWithLowColors,
FUIStepsWithTitlesOnTheSide,
FUIPasswordInput,
FUITabsWithBackgroundColor,
FUIModalDialog,
FUISecondaryButtons,
FUIHeroSectionWithGradientBackground,
FUIPricingSectionWithOnePlan,
FUIPrimaryCta,
FUISectionHeaderWithButtonsAndNavigations,
FUIDarkPricingSectionWithTwoPlans,
FUITestimonialCenteredWithLogo,
FUIButtonsWithIcons,
FUIAvatarWithLinkAndButton,
FUIAlertSuccessWithLink,
FUIDarkContactSection,
FUIDefaultButtonsWithIcons,
FUISearchInputWithSelectMenu,
FUIFeatureSectionWithLinks,
FUITableWithTabs,
FUIAlertSuccess,
FUIDarkFaqsWithDividedRows,
FUIModalWithNewsletter,
FUIAlertDangerWithLink,
FUITableWithEditAndDelete,
FUIStatsWithImage,
FUISectionHeaderWithDescriptionAndButton,
FUIPrimaryHeroSection,
FUIPrimarySelectMenu,
FUIBannerCentredWithLink,
FUINewsletterWithAGradientBackground,
FUIUsernameInput,
FUILoginWithListedProvider,
FUIAmountInput,
FUIAvatarsWithNotification,
FUITestimonialWithSlider,
FUIJobCards,
FUIContactSectionWithImage,
FUIBasicStats,
FUIHeroSectionWithLogoClouds,
FUIPricingSectionWithTwoPlans,
FUIFooterWithDownloadLinks,
FUISearchInput,
FUIBasic404Page,
FUINewsletterWithBackground,
FUIButtonsWithShadow,
FUIAlertWarning,
FUIFaqsWithShadow,
FUISelectMenuWithSearchBox,
FUIBasicTabs,
FUISecondaryCta,
FUIModalDanger,
FUIFaqsWithSearchBox,
FUIDarkFeatureSection,
FUIAmountInputWithSelectInRight,
FUIEmailInput,
FUIPricingSectionWithTable,
FUICtaWithImage,
FUIPaginationWithCurrentPageInfo,
FUIAlertDanger,
FUIStepsWithChevrons,
FUIDisabledButtons,
FUILoginWithGoogleProvider,
FUITableWithAvatars,
FUISectionHeaderWithNavigations,
FUIPrimaryFooter,
FUISecondaryNavbar,
FUIJobCardsWithInformation,
FUIBlogCardsPrimary,
FUIDarkLogoGrid,
FUIPaginationWithPreviousAndNextLink,
FUIModalWithShareableLink,
FUISignUpWithGoogleProvider,
FUIFeatureSectionWithThreeColumns,
FUITabsWithoutUnderline,
FUIStepsWithLine,
FUIContactSectionWithInfo,
FUIRoundedButtons,
FUICtaWithBlueBackground,
FUIWebsiteUrlInput,
FUIFeatureSectionWithCheckIcons,
FUIFeatureSectionWithImage,
FUIFaqsWithDividedRows,
FUIBannerWithLink,
FUIBasicSteps,
FUISecondaryFaqs,
FUITestimonialWithThreeColumn,
FUITeamSectionWithInfo,
FUIDarkCtaWithLinkOnTheSide,
FUITeamWithLargeAvatars,
FUIAvatarGroupStackedWithText,
FUIBlogCardsSecondary,
FUIStatsOnTheSide,
FUIDarkHeroSection,
FUIColorPickerRadioGroup,
FUIAlertInfo,
FUIStatusSelectMenu,
FUIAlertDangerWithDescription,
FUITeamMembersCard,
FUIFaqsWithTitles,
FUIDividedLogoGrid,
FUIPhoneNumberInput,
FUISelectMenuWithIcon,
FUICentredCtaWithTwoLinks,
FUIAvatarGroupStacked,
FUICentered404PageWithTowLinks,
FUIAlertInfoWithLink,
FUIBlogSectionWithPostsCard,
FUIHeroSectionWithImage,
FUISectionHeaderWithSearchBox,
FUIBasicTable,
FUIBasicFeatureSection,
FUIModalSuccess,
FUI404PageWithListOfItems,
FUIBannerCentred,
FUICenteredContactSection,
FUISecondaryNewsletter,
FUIHeroSectionWithBottomImage,
FUICentredCta,
FUIAvatars,
FUIContactSectionWithFourColumns,
FUISectionHeaderWithButtons,
FUIBannerCentredWithBadge,
FUIPrimaryNewsletter,
FUISelectMenuWithAvatars,
FUIPaymentCardsRadioGroup,
FUIBasicLoginForm,
FUILogoGridWithTowRows,
FUIDarkStats,
FUIAlertWarningWithBorder,
FUIButtonsWithIconAndText,
FUIIntegrationsCard,
FUITeamSectionWithCentredAvatars,
FUIAvatarGroupStackedWithJoinButton,
FUIUploadFileCard,
FUISearchInputWithSelectMenuAndAvatars,
FUINavbarWithDividedItems,
FUIBasicRadioGroup,
FUITableWithCheckbox,
FUISecondaryHeroSection,
FUIPaginationStacked,
FUITeamSectionWithVerticalImages,
FUIVerticalTabsWithoutLine,
FUILogoGridWithHeader,
}