@sikka/hawa 0.0.288 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles.css CHANGED
@@ -388,46 +388,51 @@ video {
388
388
  :root {
389
389
  --background: 0 0% 100%;
390
390
  --foreground: 240 10% 3.9%;
391
+ --card: 0 0% 100%;
392
+ --card-foreground: 240 10% 3.9%;
393
+ --popover: 0 0% 100%;
394
+ --popover-foreground: 240 10% 3.9%;
395
+ --primary: 240 5.9% 10%;
396
+ --primary-foreground: 0 0% 98%;
397
+ --secondary: 240 4.8% 95.9%;
398
+ --secondary-foreground: 240 5.9% 10%;
399
+ --muted: 240 4.8% 95.9%;
400
+ --muted-foreground: 240 3.8% 46.1%;
401
+ --accent: 240 4.8% 95.9%;
402
+ --accent-foreground: 240 5.9% 10%;
403
+ --destructive: 0 84.2% 60.2%;
404
+ --destructive-foreground: 0 0% 98%;
391
405
  --border: 240 5.9% 90%;
406
+ --input: 240 5.9% 90%;
407
+ --ring: 240 5% 64.9%;
408
+ /* --radius: 0.5rem; */
409
+ --radius: 0rem;
410
+ --radius-inner: calc(var(--radius) - calc(var(--radius) / 3));
392
411
 
393
- --layout-primary-700: #b7aff7;
394
412
  /* --layout-primary-500: #dfdcfc; */
413
+
414
+ --layout-primary-700: #b7aff7;
395
415
  --layout-primary-500: #fdfdfd;
396
416
  --layout-primary-600: #f7f7f7;
397
417
  --layout-primary-300: #e7e5fa;
398
-
399
418
  --layout-secondary: #d2cdfa;
400
419
 
401
420
  --button-primary-300: 247 72% 61%;
402
421
  --button-primary-500: 247 82% 57%;
403
422
  --button-primary-500-hsl: hsl(247, 82%, 57%);
404
423
  --button-primary-700: 247 71% 39%;
405
-
406
424
  --button-secondary-500: #ffc011;
407
425
  --button-secondary-700: #b48d24;
408
-
409
- --card: 0 0% 100%;
410
- --card-foreground: 240 10% 3.9%;
411
-
412
- --muted: 240 4.8% 95.9%;
413
- --muted-foreground: 240 3.8% 46.1%;
414
-
415
- --border-radius: 10px;
416
- --border-radius-inner: calc(
417
- var(--border-radius) - calc(var(--border-radius) / 3)
418
- );
419
426
  }
420
-
421
427
  .dark {
422
428
  --layout-primary-500: #363636;
423
429
  --layout-primary-600: #2d2d2d;
424
430
  --layout-primary-700: #1d1d1d;
425
431
  --layout-primary-300: #4a4a4a;
426
432
  /* --layout-primary-300: hsl(240, 8%, 10%); */
427
-
428
433
  /* --background: 240 10% 3.9%; //odd */
429
- --background: 240 8% 10%;
430
434
 
435
+ --background: 240 10% 3.9%;
431
436
  --foreground: 0 0% 98%;
432
437
  --card: 240 10% 3.9%;
433
438
  --card-foreground: 0 0% 98%;
@@ -442,7 +447,7 @@ video {
442
447
  --accent: 240 3.7% 15.9%;
443
448
  --accent-foreground: 0 0% 98%;
444
449
  --destructive: 0 62.8% 30.6%;
445
- --destructive-foreground: 0 0% 98%;
450
+ --destructive-foreground: 0 85.7% 97.3%;
446
451
  --border: 240 3.7% 15.9%;
447
452
  --input: 240 3.7% 15.9%;
448
453
  --ring: 240 4.9% 83.9%;
@@ -469,7 +474,7 @@ video {
469
474
  font-size: 0.75rem;
470
475
  /* color: theme("colors.slate.500"); */
471
476
  /* background-color: theme("colors.stone.100"); */
472
- border-radius: var(--border-radius);
477
+ border-radius: var(--radius);
473
478
  /* padding-left: theme("spacing[1.5]");
474
479
  padding-right: theme("spacing[1.5]");
475
480
  padding-top: theme("spacing.1");
@@ -642,41 +647,15 @@ video {
642
647
  }
643
648
  .container {
644
649
  width: 100%;
650
+ margin-right: auto;
651
+ margin-left: auto;
652
+ padding-right: 2rem;
653
+ padding-left: 2rem;
645
654
  }
646
- @media (min-width: 440px) {
647
-
648
- .container {
649
- max-width: 440px;
650
- }
651
- }
652
- @media (min-width: 640px) {
653
-
654
- .container {
655
- max-width: 640px;
656
- }
657
- }
658
- @media (min-width: 768px) {
659
-
660
- .container {
661
- max-width: 768px;
662
- }
663
- }
664
- @media (min-width: 1024px) {
665
-
666
- .container {
667
- max-width: 1024px;
668
- }
669
- }
670
- @media (min-width: 1280px) {
671
-
672
- .container {
673
- max-width: 1280px;
674
- }
675
- }
676
- @media (min-width: 1536px) {
655
+ @media (min-width: 1400px) {
677
656
 
678
657
  .container {
679
- max-width: 1536px;
658
+ max-width: 1400px;
680
659
  }
681
660
  }
682
661
  .sr-only {
@@ -1500,6 +1479,9 @@ video {
1500
1479
  .gap-5 {
1501
1480
  gap: 1.25rem;
1502
1481
  }
1482
+ .gap-6 {
1483
+ gap: 1.5rem;
1484
+ }
1503
1485
  .gap-8 {
1504
1486
  gap: 2rem;
1505
1487
  }
@@ -1541,6 +1523,16 @@ video {
1541
1523
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
1542
1524
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
1543
1525
  }
1526
+ .space-y-1 > :not([hidden]) ~ :not([hidden]) {
1527
+ --tw-space-y-reverse: 0;
1528
+ margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
1529
+ margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
1530
+ }
1531
+ .space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
1532
+ --tw-space-y-reverse: 0;
1533
+ margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
1534
+ margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
1535
+ }
1544
1536
  .space-y-6 > :not([hidden]) ~ :not([hidden]) {
1545
1537
  --tw-space-y-reverse: 0;
1546
1538
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
@@ -1594,7 +1586,7 @@ video {
1594
1586
  white-space: nowrap;
1595
1587
  }
1596
1588
  .rounded {
1597
- border-radius: var(--border-radius);
1589
+ border-radius: var(--radius);
1598
1590
  }
1599
1591
  .rounded-3xl {
1600
1592
  border-radius: 1.5rem;
@@ -1606,82 +1598,82 @@ video {
1606
1598
  border-radius: 9999px;
1607
1599
  }
1608
1600
  .rounded-inner {
1609
- border-radius: var(--border-radius-inner);
1601
+ border-radius: var(--radius-inner);
1610
1602
  }
1611
1603
  .rounded-lg {
1612
- border-radius: 0.5rem;
1604
+ border-radius: var(--radius);
1613
1605
  }
1614
1606
  .rounded-md {
1615
- border-radius: 0.375rem;
1607
+ border-radius: calc(var(--radius) - 2px);
1616
1608
  }
1617
1609
  .rounded-none {
1618
1610
  border-radius: 0px;
1619
1611
  }
1620
1612
  .rounded-xl {
1621
- border-radius: 0.75rem;
1613
+ border-radius: calc(var(--radius) + 4px);
1622
1614
  }
1623
1615
  .rounded-b {
1624
- border-bottom-right-radius: var(--border-radius);
1625
- border-bottom-left-radius: var(--border-radius);
1616
+ border-bottom-right-radius: var(--radius);
1617
+ border-bottom-left-radius: var(--radius);
1626
1618
  }
1627
1619
  .rounded-b-lg {
1628
- border-bottom-right-radius: 0.5rem;
1629
- border-bottom-left-radius: 0.5rem;
1620
+ border-bottom-right-radius: var(--radius);
1621
+ border-bottom-left-radius: var(--radius);
1630
1622
  }
1631
1623
  .rounded-l {
1632
- border-top-left-radius: var(--border-radius);
1633
- border-bottom-left-radius: var(--border-radius);
1624
+ border-top-left-radius: var(--radius);
1625
+ border-bottom-left-radius: var(--radius);
1634
1626
  }
1635
1627
  .rounded-l-lg {
1636
- border-top-left-radius: 0.5rem;
1637
- border-bottom-left-radius: 0.5rem;
1628
+ border-top-left-radius: var(--radius);
1629
+ border-bottom-left-radius: var(--radius);
1638
1630
  }
1639
1631
  .rounded-l-none {
1640
1632
  border-top-left-radius: 0px;
1641
1633
  border-bottom-left-radius: 0px;
1642
1634
  }
1643
1635
  .rounded-r {
1644
- border-top-right-radius: var(--border-radius);
1645
- border-bottom-right-radius: var(--border-radius);
1636
+ border-top-right-radius: var(--radius);
1637
+ border-bottom-right-radius: var(--radius);
1646
1638
  }
1647
1639
  .rounded-t {
1648
- border-top-left-radius: var(--border-radius);
1649
- border-top-right-radius: var(--border-radius);
1640
+ border-top-left-radius: var(--radius);
1641
+ border-top-right-radius: var(--radius);
1650
1642
  }
1651
1643
  .rounded-t-inner {
1652
- border-top-left-radius: var(--border-radius-inner);
1653
- border-top-right-radius: var(--border-radius-inner);
1644
+ border-top-left-radius: var(--radius-inner);
1645
+ border-top-right-radius: var(--radius-inner);
1654
1646
  }
1655
1647
  .rounded-t-lg {
1656
- border-top-left-radius: 0.5rem;
1657
- border-top-right-radius: 0.5rem;
1648
+ border-top-left-radius: var(--radius);
1649
+ border-top-right-radius: var(--radius);
1658
1650
  }
1659
1651
  .rounded-bl {
1660
- border-bottom-left-radius: var(--border-radius);
1652
+ border-bottom-left-radius: var(--radius);
1661
1653
  }
1662
1654
  .rounded-bl-lg {
1663
- border-bottom-left-radius: 0.5rem;
1655
+ border-bottom-left-radius: var(--radius);
1664
1656
  }
1665
1657
  .rounded-bl-none {
1666
1658
  border-bottom-left-radius: 0px;
1667
1659
  }
1668
1660
  .rounded-br {
1669
- border-bottom-right-radius: var(--border-radius);
1661
+ border-bottom-right-radius: var(--radius);
1670
1662
  }
1671
1663
  .rounded-br-lg {
1672
- border-bottom-right-radius: 0.5rem;
1664
+ border-bottom-right-radius: var(--radius);
1673
1665
  }
1674
1666
  .rounded-br-none {
1675
1667
  border-bottom-right-radius: 0px;
1676
1668
  }
1677
1669
  .rounded-tl-lg {
1678
- border-top-left-radius: 0.5rem;
1670
+ border-top-left-radius: var(--radius);
1679
1671
  }
1680
1672
  .rounded-tl-none {
1681
1673
  border-top-left-radius: 0px;
1682
1674
  }
1683
1675
  .rounded-tr-lg {
1684
- border-top-right-radius: 0.5rem;
1676
+ border-top-right-radius: var(--radius);
1685
1677
  }
1686
1678
  .rounded-tr-none {
1687
1679
  border-top-right-radius: 0px;
@@ -1788,6 +1780,9 @@ video {
1788
1780
  --tw-border-opacity: 1;
1789
1781
  border-color: rgb(134 239 172 / var(--tw-border-opacity));
1790
1782
  }
1783
+ .border-input {
1784
+ border-color: hsl(var(--input));
1785
+ }
1791
1786
  .border-red-300 {
1792
1787
  --tw-border-opacity: 1;
1793
1788
  border-color: rgb(252 165 165 / var(--tw-border-opacity));
@@ -1849,6 +1844,10 @@ video {
1849
1844
  --tw-bg-opacity: 1;
1850
1845
  background-color: rgb(21 94 117 / var(--tw-bg-opacity));
1851
1846
  }
1847
+ .bg-destructive {
1848
+ --tw-bg-opacity: 1;
1849
+ background-color: hsl(var(--destructive) / var(--tw-bg-opacity));
1850
+ }
1852
1851
  .bg-gray-100 {
1853
1852
  --tw-bg-opacity: 1;
1854
1853
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
@@ -1910,6 +1909,9 @@ video {
1910
1909
  --tw-bg-opacity: 1;
1911
1910
  background-color: rgb(251 146 60 / var(--tw-bg-opacity));
1912
1911
  }
1912
+ .bg-primary {
1913
+ background-color: hsl(var(--primary));
1914
+ }
1913
1915
  .bg-red-100 {
1914
1916
  --tw-bg-opacity: 1;
1915
1917
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
@@ -1938,6 +1940,9 @@ video {
1938
1940
  --tw-bg-opacity: 1;
1939
1941
  background-color: rgb(127 29 29 / var(--tw-bg-opacity));
1940
1942
  }
1943
+ .bg-secondary {
1944
+ background-color: hsl(var(--secondary));
1945
+ }
1941
1946
  .bg-slate-600 {
1942
1947
  --tw-bg-opacity: 1;
1943
1948
  background-color: rgb(71 85 105 / var(--tw-bg-opacity));
@@ -2055,6 +2060,10 @@ video {
2055
2060
  padding-left: 1.5rem;
2056
2061
  padding-right: 1.5rem;
2057
2062
  }
2063
+ .px-8 {
2064
+ padding-left: 2rem;
2065
+ padding-right: 2rem;
2066
+ }
2058
2067
  .px-\[5px\] {
2059
2068
  padding-left: 5px;
2060
2069
  padding-right: 5px;
@@ -2296,6 +2305,10 @@ video {
2296
2305
  .text-card-foreground {
2297
2306
  color: hsl(var(--card-foreground));
2298
2307
  }
2308
+ .text-destructive-foreground {
2309
+ --tw-text-opacity: 1;
2310
+ color: hsl(var(--destructive-foreground) / var(--tw-text-opacity));
2311
+ }
2299
2312
  .text-foreground {
2300
2313
  color: hsl(var(--foreground));
2301
2314
  }
@@ -2354,6 +2367,12 @@ video {
2354
2367
  --tw-text-opacity: 1;
2355
2368
  color: rgb(23 23 23 / var(--tw-text-opacity));
2356
2369
  }
2370
+ .text-primary {
2371
+ color: hsl(var(--primary));
2372
+ }
2373
+ .text-primary-foreground {
2374
+ color: hsl(var(--primary-foreground));
2375
+ }
2357
2376
  .text-red-500 {
2358
2377
  --tw-text-opacity: 1;
2359
2378
  color: rgb(239 68 68 / var(--tw-text-opacity));
@@ -2370,6 +2389,9 @@ video {
2370
2389
  --tw-text-opacity: 1;
2371
2390
  color: rgb(127 29 29 / var(--tw-text-opacity));
2372
2391
  }
2392
+ .text-secondary-foreground {
2393
+ color: hsl(var(--secondary-foreground));
2394
+ }
2373
2395
  .text-violet-11 {
2374
2396
  --tw-text-opacity: 1;
2375
2397
  color: hsl(250 43.0% 48.0% / var(--tw-text-opacity));
@@ -2482,6 +2504,9 @@ video {
2482
2504
  .ring-offset-2 {
2483
2505
  --tw-ring-offset-width: 2px;
2484
2506
  }
2507
+ .ring-offset-background {
2508
+ --tw-ring-offset-color: hsl(var(--background));
2509
+ }
2485
2510
  .drop-shadow-lg {
2486
2511
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
2487
2512
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
@@ -2505,6 +2530,13 @@ video {
2505
2530
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2506
2531
  transition-duration: 150ms;
2507
2532
  }
2533
+ .transition-colors {
2534
+ transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
2535
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
2536
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
2537
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2538
+ transition-duration: 150ms;
2539
+ }
2508
2540
  .delay-100 {
2509
2541
  transition-delay: 100ms;
2510
2542
  }
@@ -2579,6 +2611,25 @@ video {
2579
2611
  body {
2580
2612
  font-family: "IBM Plex Sans Arabic", sans-serif;
2581
2613
  }
2614
+ .file\:border-0::file-selector-button {
2615
+ border-width: 0px;
2616
+ }
2617
+ .file\:bg-transparent::file-selector-button {
2618
+ background-color: transparent;
2619
+ }
2620
+ .file\:text-sm::file-selector-button {
2621
+ font-size: 0.875rem;
2622
+ line-height: 1.25rem;
2623
+ }
2624
+ .file\:font-medium::file-selector-button {
2625
+ font-weight: 500;
2626
+ }
2627
+ .placeholder\:text-muted-foreground::-moz-placeholder {
2628
+ color: hsl(var(--muted-foreground));
2629
+ }
2630
+ .placeholder\:text-muted-foreground::placeholder {
2631
+ color: hsl(var(--muted-foreground));
2632
+ }
2582
2633
  .after\:absolute::after {
2583
2634
  content: var(--tw-content);
2584
2635
  position: absolute;
@@ -2677,6 +2728,9 @@ body {
2677
2728
  .hover\:cursor-pointer:hover {
2678
2729
  cursor: pointer;
2679
2730
  }
2731
+ .hover\:bg-accent:hover {
2732
+ background-color: hsl(var(--accent));
2733
+ }
2680
2734
  .hover\:bg-blue-300:hover {
2681
2735
  --tw-bg-opacity: 1;
2682
2736
  background-color: rgb(147 197 253 / var(--tw-bg-opacity));
@@ -2700,6 +2754,9 @@ body {
2700
2754
  .hover\:bg-buttonSecondary-700:hover {
2701
2755
  background-color: var(--button-secondary-700);
2702
2756
  }
2757
+ .hover\:bg-destructive\/90:hover {
2758
+ background-color: hsl(var(--destructive) / 0.9);
2759
+ }
2703
2760
  .hover\:bg-gray-100:hover {
2704
2761
  --tw-bg-opacity: 1;
2705
2762
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
@@ -2737,10 +2794,16 @@ body {
2737
2794
  .hover\:bg-layoutPrimary-700:hover {
2738
2795
  background-color: var(--layout-primary-700);
2739
2796
  }
2797
+ .hover\:bg-primary\/90:hover {
2798
+ background-color: hsl(var(--primary) / 0.9);
2799
+ }
2740
2800
  .hover\:bg-red-300:hover {
2741
2801
  --tw-bg-opacity: 1;
2742
2802
  background-color: rgb(252 165 165 / var(--tw-bg-opacity));
2743
2803
  }
2804
+ .hover\:bg-secondary\/80:hover {
2805
+ background-color: hsl(var(--secondary) / 0.8);
2806
+ }
2744
2807
  .hover\:bg-yellow-300:hover {
2745
2808
  --tw-bg-opacity: 1;
2746
2809
  background-color: rgb(253 224 71 / var(--tw-bg-opacity));
@@ -2748,6 +2811,9 @@ body {
2748
2811
  .hover\:font-bold:hover {
2749
2812
  font-weight: 700;
2750
2813
  }
2814
+ .hover\:text-accent-foreground:hover {
2815
+ color: hsl(var(--accent-foreground));
2816
+ }
2751
2817
  .hover\:text-black:hover {
2752
2818
  --tw-text-opacity: 1;
2753
2819
  color: rgb(0 0 0 / var(--tw-text-opacity));
@@ -2844,10 +2910,34 @@ body {
2844
2910
  --tw-ring-opacity: 1;
2845
2911
  --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity));
2846
2912
  }
2913
+ .focus-visible\:outline-none:focus-visible {
2914
+ outline: 2px solid transparent;
2915
+ outline-offset: 2px;
2916
+ }
2917
+ .focus-visible\:ring-2:focus-visible {
2918
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2919
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
2920
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
2921
+ }
2922
+ .focus-visible\:ring-ring:focus-visible {
2923
+ --tw-ring-color: hsl(var(--ring));
2924
+ }
2925
+ .focus-visible\:ring-offset-2:focus-visible {
2926
+ --tw-ring-offset-width: 2px;
2927
+ }
2928
+ .disabled\:pointer-events-none:disabled {
2929
+ pointer-events: none;
2930
+ }
2931
+ .disabled\:cursor-not-allowed:disabled {
2932
+ cursor: not-allowed;
2933
+ }
2847
2934
  .disabled\:bg-gray-200:disabled {
2848
2935
  --tw-bg-opacity: 1;
2849
2936
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
2850
2937
  }
2938
+ .disabled\:opacity-50:disabled {
2939
+ opacity: 0.5;
2940
+ }
2851
2941
  .group:hover .group-hover\:opacity-100 {
2852
2942
  opacity: 1;
2853
2943
  }
@@ -2885,6 +2975,12 @@ body {
2885
2975
  --tw-border-opacity: 1;
2886
2976
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
2887
2977
  }
2978
+ .peer:disabled ~ .peer-disabled\:cursor-not-allowed {
2979
+ cursor: not-allowed;
2980
+ }
2981
+ .peer:disabled ~ .peer-disabled\:opacity-70 {
2982
+ opacity: 0.7;
2983
+ }
2888
2984
  .data-\[disabled\]\:pointer-events-none[data-disabled] {
2889
2985
  pointer-events: none;
2890
2986
  }
@@ -3360,8 +3456,8 @@ body {
3360
3456
  }
3361
3457
 
3362
3458
  .md\:rounded-l-lg {
3363
- border-top-left-radius: 0.5rem;
3364
- border-bottom-left-radius: 0.5rem;
3459
+ border-top-left-radius: var(--radius);
3460
+ border-bottom-left-radius: var(--radius);
3365
3461
  }
3366
3462
 
3367
3463
  .md\:border-l {
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function SignInBlock(): import("react").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  export * from "./AppLanding";
2
2
  export * from "./SignInPhone";
3
3
  export * from "./SignInForm";
4
+ export * from "./SignInBlock";
4
5
  export * from "./SignUpForm";
5
6
  export * from "./NewPasswordForm";
6
7
  export * from "./ResetPasswordForm";
@@ -0,0 +1,11 @@
1
+ import * as React from "react";
2
+ import { type VariantProps } from "class-variance-authority";
3
+ declare const buttonVariants: (props?: {
4
+ variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
5
+ size?: "default" | "sm" | "lg" | "icon";
6
+ } & import("class-variance-authority/dist/types").ClassProp) => string;
7
+ export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
8
+ asChild?: boolean;
9
+ }
10
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
11
+ export { Button, buttonVariants };
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
3
+ declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
4
+ declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
5
+ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
6
+ declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
7
+ declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
8
+ export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent };
@@ -0,0 +1,19 @@
1
+ /// <reference types="react" />
2
+ type IconProps = React.HTMLAttributes<SVGElement>;
3
+ export declare const Icons: {
4
+ logo: (props: IconProps) => import("react").JSX.Element;
5
+ twitter: (props: IconProps) => import("react").JSX.Element;
6
+ gitHub: (props: IconProps) => import("react").JSX.Element;
7
+ radix: (props: IconProps) => import("react").JSX.Element;
8
+ aria: (props: IconProps) => import("react").JSX.Element;
9
+ npm: (props: IconProps) => import("react").JSX.Element;
10
+ yarn: (props: IconProps) => import("react").JSX.Element;
11
+ pnpm: (props: IconProps) => import("react").JSX.Element;
12
+ react: (props: IconProps) => import("react").JSX.Element;
13
+ tailwind: (props: IconProps) => import("react").JSX.Element;
14
+ google: (props: IconProps) => import("react").JSX.Element;
15
+ apple: (props: IconProps) => import("react").JSX.Element;
16
+ paypal: (props: IconProps) => import("react").JSX.Element;
17
+ spinner: (props: IconProps) => import("react").JSX.Element;
18
+ };
19
+ export {};
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ export interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
3
+ }
4
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
5
+ export { Input };
@@ -0,0 +1,5 @@
1
+ import * as React from "react";
2
+ import * as LabelPrimitive from "@radix-ui/react-label";
3
+ import { type VariantProps } from "class-variance-authority";
4
+ declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: import("class-variance-authority/dist/types").ClassProp) => string> & React.RefAttributes<HTMLLabelElement>>;
5
+ export { Label };