dioxus_components 0.1.1

A comprehensive collection of reusable Dioxus 0.7 components built with Tailwind CSS v4
Documentation
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
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
# Dioxus Components Documentation

A comprehensive guide to using the Dioxus 0.7 component library. All components are built with Tailwind CSS v4 and follow Radix UI design patterns.

## Table of Contents

1. [Accordion]#accordion
2. [Avatar]#avatar
3. [Badge]#badge
4. [Button]#button
5. [Card]#card
6. [Checkbox]#checkbox
7. [Dialog]#dialog
8. [Empty]#empty
9. [Portal]#portal
10. [Spinner]#spinner
11. [Tooltip]#tooltip

---

## Accordion

A vertically stacked set of interactive headings that each reveal an associated section of content. Supports both single and multiple open items.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{Accordion, AccordionItem, AccordionTrigger, AccordionContent, AccordionType};

#[component]
fn App() -> Element {
    rsx! {
        Accordion {
            accordion_type: AccordionType::Single { collapsible: true },
            AccordionItem {
                value: "item-1",
                AccordionTrigger { "Is it accessible?" }
                AccordionContent {
                    "Yes. It adheres to the WAI-ARIA design pattern."
                }
            }
            AccordionItem {
                value: "item-2",
                AccordionTrigger { "Is it styled?" }
                AccordionContent {
                    "Yes. It comes with default styles that match the other components."
                }
            }
        }
    }
}
```

### Props

#### Accordion

| Prop             | Type                          | Default                         | Description                                           |
| ---------------- | ----------------------------- | ------------------------------- | ----------------------------------------------------- |
| `accordion_type` | `AccordionType`               | `Single { collapsible: false }` | Controls whether single or multiple items can be open |
| `default_value`  | `Option<String>`              | `None`                          | Initial value for single accordion                    |
| `default_values` | `Option<Vec<String>>`         | `None`                          | Initial values for multiple accordion                 |
| `value`          | `Option<Signal<String>>`      | `None`                          | Controlled value for single accordion                 |
| `values`         | `Option<Signal<Vec<String>>>` | `None`                          | Controlled values for multiple accordion              |
| `disabled`       | `bool`                        | `false`                         | Disables all accordion items                          |
| `orientation`    | `AccordionOrientation`        | `Vertical`                      | Layout orientation                                    |
| `class`          | `Option<String>`              | `None`                          | Additional CSS classes                                |

#### AccordionItem

| Prop       | Type             | Default  | Description                    |
| ---------- | ---------------- | -------- | ------------------------------ |
| `value`    | `String`         | Required | Unique identifier for the item |
| `disabled` | `bool`           | `false`  | Disables this specific item    |
| `class`    | `Option<String>` | `None`   | Additional CSS classes         |

#### AccordionTrigger

| Prop    | Type             | Default | Description            |
| ------- | ---------------- | ------- | ---------------------- |
| `class` | `Option<String>` | `None`  | Additional CSS classes |

#### AccordionContent

| Prop    | Type             | Default | Description            |
| ------- | ---------------- | ------- | ---------------------- |
| `class` | `Option<String>` | `None`  | Additional CSS classes |

### Variants

```rust
// Single accordion (only one item open at a time)
Accordion {
    accordion_type: AccordionType::Single { collapsible: false },
    // Items here...
}

// Single accordion with collapse support
Accordion {
    accordion_type: AccordionType::Single { collapsible: true },
    // Items here...
}

// Multiple accordion (many items can be open)
Accordion {
    accordion_type: AccordionType::Multiple,
    // Items here...
}
```

### Controlled State

```rust
let mut selected = use_signal(|| "item-1".to_string());

rsx! {
    Accordion {
        accordion_type: AccordionType::Single { collapsible: true },
        value: selected,
        // Items here...
    }
}
```

---

## Avatar

Displays a user's avatar image or initials as a fallback.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{Avatar, AvatarImage, AvatarFallback};

#[component]
fn App() -> Element {
    rsx! {
        Avatar {
            AvatarImage {
                src: "https://github.com/shadcn.png",
                alt: "User Avatar"
            }
            AvatarFallback {
                "CN"
            }
        }
    }
}
```

### Props

#### Avatar

| Prop    | Type             | Default | Description            |
| ------- | ---------------- | ------- | ---------------------- |
| `class` | `Option<String>` | `None`  | Additional CSS classes |

#### AvatarImage

| Prop                       | Type                   | Default  | Description                          |
| -------------------------- | ---------------------- | -------- | ------------------------------------ |
| `src`                      | `String`               | Required | Image URL                            |
| `alt`                      | `Option<String>`       | `None`   | Alt text for accessibility           |
| `class`                    | `Option<String>`       | `None`   | Additional CSS classes               |
| `referrer_policy`          | `Option<String>`       | `None`   | Referrer policy for image request    |
| `cross_origin`             | `Option<String>`       | `None`   | Cross-origin policy                  |
| `on_loading_status_change` | `Option<EventHandler>` | `None`   | Callback when loading status changes |

#### AvatarFallback

| Prop    | Type             | Default | Description            |
| ------- | ---------------- | ------- | ---------------------- |
| `class` | `Option<String>` | `None`  | Additional CSS classes |

### Image Loading States

The avatar component tracks image loading with states:

- `Idle` - Initial state
- `Loading` - Image is being loaded
- `Loaded` - Image successfully loaded
- `Error` - Image failed to load (shows fallback)

```rust
Avatar {
    AvatarImage {
        src: "https://example.com/avatar.jpg",
        alt: "Avatar",
        on_loading_status_change: move |status| {
            match status {
                ImageLoadingStatus::Loaded => println!("Image loaded!"),
                ImageLoadingStatus::Error => println!("Image failed to load"),
                _ => {}
            }
        }
    }
    AvatarFallback {
        "AB"
    }
}
```

---

## Badge

A flexible badge component with multiple styling variants.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{Badge, BadgeVariant};

#[component]
fn App() -> Element {
    rsx! {
        Badge { "Default" }
        Badge {
            variant: BadgeVariant::Secondary,
            "Secondary"
        }
        Badge {
            variant: BadgeVariant::Destructive,
            "Destructive"
        }
        Badge {
            variant: BadgeVariant::Outline,
            "Outline"
        }
    }
}
```

### Props

| Prop      | Type                   | Default   | Description                                           |
| --------- | ---------------------- | --------- | ----------------------------------------------------- |
| `variant` | `BadgeVariant`         | `Default` | Badge color and style                                 |
| `class`   | `Option<String>`       | `None`    | Additional CSS classes                                |
| `as_`     | `String`               | `"span"`  | HTML element to render (`span`, `a`, `button`, `div`) |
| `href`    | `Option<String>`       | `None`    | URL for link badges                                   |
| `onclick` | `Option<EventHandler>` | `None`    | Click handler                                         |

### Variants

```rust
// Default - Primary color
Badge { "Default" }

// Secondary - Gray background
Badge {
    variant: BadgeVariant::Secondary,
    "Secondary"
}

// Destructive - Red background
Badge {
    variant: BadgeVariant::Destructive,
    "Destructive"
}

// Outline - Border only
Badge {
    variant: BadgeVariant::Outline,
    "Outline"
}
```

### As Different Elements

```rust
// As link
Badge {
    as_: "a".to_string(),
    href: "https://example.com",
    "Link Badge"
}

// As button
Badge {
    as_: "button".to_string(),
    onclick: move |_| {
        println!("Badge clicked!");
    },
    "Clickable Badge"
}
```

---

## Button

A flexible button component with multiple variants and sizes.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{Button, ButtonVariant, ButtonSize};

#[component]
fn App() -> Element {
    rsx! {
        Button { "Click me" }
        Button {
            variant: ButtonVariant::Destructive,
            "Delete"
        }
        Button {
            variant: ButtonVariant::Outline,
            "Cancel"
        }
    }
}
```

### Props

| Prop           | Type                    | Default    | Description                         |
| -------------- | ----------------------- | ---------- | ----------------------------------- |
| `variant`      | `Option<ButtonVariant>` | `Default`  | Button style variant                |
| `size`         | `Option<ButtonSize>`    | `Default`  | Button size                         |
| `class`        | `Option<String>`        | `None`     | Additional CSS classes              |
| `as_`          | `Option<String>`        | `"button"` | HTML element to render              |
| `disabled`     | `Option<bool>`          | `false`    | Disable the button                  |
| `href`         | `Option<String>`        | `None`     | URL for link buttons                |
| `onclick`      | `Option<EventHandler>`  | `None`     | Click handler                       |
| `aria_invalid` | `Option<bool>`          | `false`    | Mark as invalid for form validation |

### Button Variants

```rust
// Default - Primary color (recommended)
Button { "Default" }

// Destructive - Red, for delete/dangerous actions
Button {
    variant: ButtonVariant::Destructive,
    "Delete"
}

// Outline - Bordered, low emphasis
Button {
    variant: ButtonVariant::Outline,
    "Cancel"
}

// Secondary - Gray, secondary action
Button {
    variant: ButtonVariant::Secondary,
    "Secondary"
}

// Ghost - No background, text only
Button {
    variant: ButtonVariant::Ghost,
    "Ghost"
}

// Link - Underlined text
Button {
    variant: ButtonVariant::Link,
    "Link"
}
```

### Button Sizes

```rust
// Default - Medium (9 height)
Button { "Default" }

// Small - Compact (8 height)
Button {
    size: ButtonSize::Sm,
    "Small"
}

// Large - Spacious (10 height)
Button {
    size: ButtonSize::Lg,
    "Large"
}

// Icon - Square for icon buttons (24px)
Button {
    size: ButtonSize::Icon,
    // SVG icon here
}

// IconSm - Small square icon (20px)
Button {
    size: ButtonSize::IconSm,
    // SVG icon here
}

// IconLg - Large square icon (40px)
Button {
    size: ButtonSize::IconLg,
    // SVG icon here
}
```

### Link Button

```rust
Button {
    as_: "a".to_string(),
    href: "https://example.com",
    "Go to Example"
}
```

### Disabled State

```rust
Button {
    disabled: Some(true),
    "Disabled"
}
```

### With Icon

```rust
Button {
    class: "gap-2",
    svg {
        // Icon SVG
    }
    "Button with Icon"
}
```

---

## Card

A flexible card container component with optional header, content, and footer sections. Perfect for displaying grouped information, forms, and content blocks.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{
    Card, CardHeader, CardTitle, CardDescription,
    CardContent, CardFooter, CardAction
};

#[component]
fn App() -> Element {
    rsx! {
        Card {
            class: "w-[350px]",
            CardHeader {
                CardTitle { "Notifications" }
                CardDescription { "You have 3 unread messages." }
            }
            CardContent {
                p { "Check your inbox for updates." }
            }
            CardFooter {
                Button { "Mark all as read" }
            }
        }
    }
}
```

### Card with Action

Add action buttons to the header:

```rust
Card {
    CardHeader {
        CardTitle { "Team Members" }
        CardDescription { "Invite and manage your team." }
        CardAction {
            Button {
                variant: ButtonVariant::Ghost,
                "+"
            }
        }
    }
    CardContent {
        // Team member list
    }
}
```

### Props

#### Card

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Card content           |

#### CardHeader

| Prop       | Type             | Default  | Description                                 |
| ---------- | ---------------- | -------- | ------------------------------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes                      |
| `children` | `Element`        | Required | Header content (title, description, action) |

#### CardTitle

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Title text             |

#### CardDescription

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Description text       |

#### CardAction

| Prop       | Type             | Default  | Description                |
| ---------- | ---------------- | -------- | -------------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes     |
| `children` | `Element`        | Required | Action buttons or controls |

#### CardContent

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Main content           |

#### CardFooter

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Footer content         |

### Card Examples

#### Stats Card

```rust
Card {
    CardHeader {
        CardTitle { "Total Revenue" }
        CardDescription { "January - December 2024" }
    }
    CardContent {
        p { class: "text-3xl font-bold", "$45,231.89" }
        p { class: "text-sm text-muted-foreground",
            "+20.1% from last year"
        }
    }
}
```

#### Form Card

```rust
Card {
    CardHeader {
        CardTitle { "Create Account" }
        CardDescription { "Enter your details to get started." }
    }
    CardContent {
        div {
            class: "space-y-4",
            // Form fields
        }
    }
    CardFooter {
        class: "border-t",
        Button { "Create Account" }
    }
}
```

#### Pricing Card

```rust
Card {
    CardHeader {
        CardTitle { "Pro Plan" }
        CardDescription { "For professional use" }
    }
    CardContent {
        div {
            p { class: "text-4xl font-bold", "$29" }
            p { class: "text-sm text-muted-foreground", "per month" }
        }
        ul {
            class: "space-y-2",
            li { "✓ Unlimited projects" }
            li { "✓ Priority support" }
            li { "✓ Advanced analytics" }
        }
    }
    CardFooter {
        Button { "Subscribe" }
    }
}
```

### Features

- ✅ Flexible layout with optional sections
- ✅ Header with title, description, and action support
- ✅ Automatic grid layout for header actions
- ✅ Customizable through Tailwind classes
- ✅ Consistent spacing and styling
- ✅ Border support for header and footer
- ✅ Responsive design patterns
- ✅ Shadow and rounded corners

### Best Practices

1. **Use semantic structure**: Include CardHeader, CardContent, and CardFooter for clear organization
2. **Consistent widths**: Apply width classes to Card for consistent sizing
3. **Action placement**: Use CardAction for buttons in the header
4. **Border separators**: Add `border-t` or `border-b` classes to CardFooter/CardHeader for visual separation
5. **Spacing**: The Card automatically handles internal spacing with `gap-6`
6. **Content padding**: CardContent and CardFooter include horizontal padding automatically
7. **Responsive layouts**: Use grid classes on parent containers for responsive card layouts

### Styling

The Card component uses these base styles:

- Background: `bg-card`
- Text color: `text-card-foreground`
- Border: `border` with rounded corners `rounded-xl`
- Shadow: `shadow-sm`
- Internal spacing: `gap-6` between sections
- Padding: `py-6` vertical, `px-6` on content/footer

---

## Checkbox

A three-state checkbox component with full Radix UI architecture parity. Supports checked, unchecked, and indeterminate states with comprehensive accessibility features.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{Checkbox, CheckboxIndicator, CheckboxLabel, CheckedState};

#[component]
fn App() -> Element {
    rsx! {
        div {
            class: "flex items-center gap-2",
            Checkbox {
                default_checked: CheckedState::Unchecked,
                id: Some("terms".to_string()),
                CheckboxIndicator {}
            }
            CheckboxLabel {
                for_id: Some("terms".to_string()),
                "I accept the terms and conditions"
            }
        }
    }
}
```

### Provider Pattern (Radix UI Style)

```rust
use dioxus::prelude::*;
use crate::components::{CheckboxProvider, CheckboxTrigger, CheckboxIndicator, CheckedState};

#[component]
fn App() -> Element {
    rsx! {
        CheckboxProvider {
            default_checked: CheckedState::Unchecked,
            onchange: move |state| println!("Changed to: {:?}", state),
            CheckboxTrigger {
                CheckboxIndicator {}
            }
        }
    }
}
```

### Checkbox Props

#### Checkbox (Convenience Component)

| Prop              | Type                                 | Default     | Description                     |
| ----------------- | ------------------------------------ | ----------- | ------------------------------- |
| `checked`         | `Option<CheckedState>`               | `None`      | Controlled checked state        |
| `default_checked` | `CheckedState`                       | `Unchecked` | Initial state when uncontrolled |
| `onchange`        | `Option<EventHandler<CheckedState>>` | `None`      | Callback when state changes     |
| `disabled`        | `bool`                               | `false`     | Disable the checkbox            |
| `required`        | `bool`                               | `false`     | Mark as required field          |
| `name`            | `Option<String>`                     | `None`      | Form field name                 |
| `form`            | `Option<String>`                     | `None`      | Form ID to associate with       |
| `id`              | `Option<String>`                     | `None`      | HTML id attribute               |
| `value`           | `String`                             | `"on"`      | Form submission value           |
| `class`           | `Option<String>`                     | `None`      | Additional CSS classes          |

#### CheckboxProvider

| Prop              | Type                                 | Default     | Description                     |
| ----------------- | ------------------------------------ | ----------- | ------------------------------- |
| `checked`         | `Option<CheckedState>`               | `None`      | Controlled checked state        |
| `default_checked` | `CheckedState`                       | `Unchecked` | Initial state when uncontrolled |
| `onchange`        | `Option<EventHandler<CheckedState>>` | `None`      | Callback when state changes     |
| `disabled`        | `bool`                               | `false`     | Disable the checkbox            |
| `required`        | `bool`                               | `false`     | Mark as required field          |
| `name`            | `Option<String>`                     | `None`      | Form field name                 |
| `form`            | `Option<String>`                     | `None`      | Form ID to associate with       |
| `value`           | `String`                             | `"on"`      | Form submission value           |

#### CheckboxTrigger

| Prop        | Type                                  | Default | Description            |
| ----------- | ------------------------------------- | ------- | ---------------------- |
| `class`     | `Option<String>`                      | `None`  | Additional CSS classes |
| `id`        | `Option<String>`                      | `None`  | HTML id attribute      |
| `onclick`   | `Option<EventHandler<MouseEvent>>`    | `None`  | Custom click handler   |
| `onkeydown` | `Option<EventHandler<KeyboardEvent>>` | `None`  | Custom keydown handler |

#### CheckboxIndicator

| Prop          | Type             | Default | Description                 |
| ------------- | ---------------- | ------- | --------------------------- |
| `class`       | `Option<String>` | `None`  | Additional CSS classes      |
| `force_mount` | `bool`           | `false` | Keep mounted for animations |

#### CheckboxLabel

| Prop     | Type             | Default | Description               |
| -------- | ---------------- | ------- | ------------------------- |
| `for_id` | `Option<String>` | `None`  | ID of associated checkbox |
| `class`  | `Option<String>` | `None`  | Additional CSS classes    |

### Checked States

The checkbox supports three states via the `CheckedState` enum:

```rust
// Unchecked - Empty checkbox
Checkbox {
    default_checked: CheckedState::Unchecked,
    CheckboxIndicator {}
}

// Checked - Shows checkmark (✓)
Checkbox {
    default_checked: CheckedState::Checked,
    CheckboxIndicator {}
}

// Indeterminate - Shows dash (−) for mixed/partial selection
Checkbox {
    default_checked: CheckedState::Indeterminate,
    CheckboxIndicator {}
}
```

### Controlled State

```rust
let mut checked = use_signal(|| CheckedState::Unchecked);

rsx! {
    div {
        Checkbox {
            checked: Some(checked()),
            onchange: move |state| *checked.write() = state,
            CheckboxIndicator {}
        }
        p { "State: {checked:?}" }
    }
}
```

### Provider Pattern (Advanced)

For complex scenarios requiring the full Radix UI architecture:

```rust
CheckboxProvider {
    default_checked: CheckedState::Unchecked,
    name: Some("newsletter".to_string()),
    onchange: move |state| {
        println!("Checkbox changed to: {:?}", state);
    },
    CheckboxTrigger {
        id: Some("newsletter".to_string()),
        CheckboxIndicator {}
    }
}
CheckboxLabel {
    for_id: Some("newsletter".to_string()),
    "Subscribe to newsletter"
}
```

### Form Integration

```rust
form {
    id: "signup",
    onsubmit: move |evt| {
        evt.prevent_default();
        // Handle form submission
    },

    div {
        class: "flex items-center gap-2",
        Checkbox {
            name: Some("terms".to_string()),
            form: Some("signup".to_string()),
            required: true,
            CheckboxIndicator {}
        }
        CheckboxLabel {
            for_id: Some("terms".to_string()),
            "I accept the terms *"
        }
    }

    button {
        r#type: "submit",
        "Submit"
    }
}
```

### Disabled State

```rust
Checkbox {
    default_checked: CheckedState::Checked,
    disabled: true,
    CheckboxIndicator {}
}
```

### Select All Pattern (Indeterminate)

```rust
let mut all = use_signal(|| CheckedState::Unchecked);
let mut item1 = use_signal(|| CheckedState::Unchecked);
let mut item2 = use_signal(|| CheckedState::Unchecked);

// Update parent based on children
use_effect(move || {
    let i1 = item1();
    let i2 = item2();

    if i1 == CheckedState::Checked && i2 == CheckedState::Checked {
        all.set(CheckedState::Checked);
    } else if i1 == CheckedState::Unchecked && i2 == CheckedState::Unchecked {
        all.set(CheckedState::Unchecked);
    } else {
        all.set(CheckedState::Indeterminate);  // Mixed state
    }
});

rsx! {
    div {
        // Parent "Select All" checkbox
        Checkbox {
            checked: Some(all()),
            onchange: move |state| {
                all.set(state);
                item1.set(state);
                item2.set(state);
            },
            CheckboxIndicator {}
        }
        "Select All"

        // Child checkboxes
        div {
            class: "ml-4 space-y-2",
            div {
                Checkbox {
                    checked: Some(item1()),
                    onchange: move |state| item1.set(state),
                    CheckboxIndicator {}
                }
                "Item 1"
            }
            div {
                Checkbox {
                    checked: Some(item2()),
                    onchange: move |state| item2.set(state),
                    CheckboxIndicator {}
                }
                "Item 2"
            }
        }
    }
}
```

### Custom Indicator

Replace the default checkmark with custom content:

```rust
Checkbox {
    default_checked: CheckedState::Unchecked,
    CheckboxIndicator {
        // Custom emoji or text instead of SVG
        "✅"
    }
}
```

### Accessibility

The checkbox component includes full WAI-ARIA support:

- **role="checkbox"** - Proper semantic role
- **aria-checked** - States: `"true"`, `"false"`, or `"mixed"` (indeterminate)
- **aria-required** - Marks required fields
- **Keyboard Navigation**:
  - **Tab** - Focus/unfocus the checkbox
  - **Space** - Toggle checked state
  - **Enter** - Prevented (per WAI-ARIA spec)

```rust
// Accessible checkbox with label
Checkbox {
    id: Some("agree".to_string()),
    required: true,
    CheckboxIndicator {}
}
CheckboxLabel {
    for_id: Some("agree".to_string()),
    "I agree to the terms (required)"
}
```

### Component Architecture

The checkbox follows Radix UI's composition pattern:

```
CheckboxProvider (state context)
└── CheckboxTrigger (button[role="checkbox"])
    ├── CheckboxIndicator (visual indicator)
    └── CheckboxBubbleInput (hidden form input)
```

**Components:**

- **CheckboxProvider** - Manages state and provides context
- **CheckboxTrigger** - Interactive button element
- **CheckboxIndicator** - Shows checkmark or dash icon
- **CheckboxBubbleInput** - Hidden input for form submission (automatic)
- **Checkbox** - Convenience wrapper (Provider + Trigger)
- **CheckboxLabel** - Accessible label helper

### Advanced Features

**Form Reset Support:**
Native HTML form reset automatically restores the checkbox to its `default_checked` state.

**Event Composition:**
Custom event handlers can be combined with built-in behavior:

```rust
CheckboxTrigger {
    onclick: move |evt| {
        println!("Custom click handler");
        // Built-in toggle still works
    },
    onkeydown: move |evt| {
        println!("Key pressed: {:?}", evt.key());
    },
    CheckboxIndicator {}
}
```

**Force Mount:**
Keep the indicator mounted even when unchecked (useful for animations):

```rust
CheckboxIndicator {
    force_mount: true,
    // Indicator always rendered, visibility controlled by CSS
}
```

---

## Dialog

A fully accessible modal dialog component that follows WAI-ARIA design patterns. Features include modal overlays, focus management, keyboard controls (Escape to close), and backdrop click handling.

### Basic Usage

```rust
use dioxus::prelude::*;
use dioxus_components::{
    Dialog, DialogTrigger, DialogOverlay, DialogContent,
    DialogTitle, DialogDescription, DialogClose
};

#[component]
fn App() -> Element {
    rsx! {
        Dialog {
            default_open: false,
            modal: true,
            DialogTrigger {
                class: "btn btn-primary",
                "Open Dialog"
            }
            DialogOverlay {}
            DialogContent {
                class: "dialog-content",
                DialogTitle {
                    class: "text-lg font-bold",
                    "Dialog Title"
                }
                DialogDescription {
                    class: "text-sm text-gray-600",
                    "This is a description of the dialog content."
                }
                div {
                    class: "space-y-4",
                    p { "Dialog body content goes here." }
                }
                div {
                    class: "flex justify-end gap-2",
                    DialogClose {
                        class: "btn btn-secondary",
                        "Cancel"
                    }
                    DialogClose {
                        class: "btn btn-primary",
                        "Confirm"
                    }
                }
            }
        }
    }
}
```

### Props

#### Dialog (Root Component)

| Prop             | Type                         | Default  | Description                                                |
| ---------------- | ---------------------------- | -------- | ---------------------------------------------------------- |
| `open`           | `Option<bool>`               | `None`   | Controlled open state (when provided, makes it controlled) |
| `default_open`   | `bool`                       | `false`  | Whether the dialog is initially open (uncontrolled mode)   |
| `on_open_change` | `Option<EventHandler<bool>>` | `None`   | Callback when open state changes                           |
| `modal`          | `bool`                       | `true`   | If true, shows overlay, traps focus, and locks body scroll |
| `children`       | `Element`                    | required | Child components (Trigger, Overlay, Content)               |

**Controlled vs Uncontrolled:**

- **Uncontrolled**: Only provide `default_open` (component manages state internally)
- **Controlled**: Provide `open` and `on_open_change` (you manage state externally)

#### DialogTrigger

| Prop         | Type             | Default  | Description              |
| ------------ | ---------------- | -------- | ------------------------ |
| `attributes` | `Vec<Attribute>` | `[]`     | Standard HTML attributes |
| `children`   | `Element`        | required | Button content           |

Automatically receives proper ARIA attributes:

- `aria-haspopup="dialog"`
- `aria-expanded` (true/false)
- `aria-controls` (links to content ID)
- `data-state` (open/closed)

#### DialogOverlay

| Prop         | Type             | Default  | Description              |
| ------------ | ---------------- | -------- | ------------------------ |
| `class`      | `String`         | `""`     | Additional CSS classes   |
| `attributes` | `Vec<Attribute>` | `[]`     | Standard HTML attributes |
| `children`   | `Element`        | optional | Custom overlay content   |

Default styling: Fixed position with dark semi-transparent background.

#### DialogContent

| Prop                     | Type             | Default  | Description                    |
| ------------------------ | ---------------- | -------- | ------------------------------ |
| `class`                  | `String`         | `""`     | Additional CSS classes         |
| `container`              | `String`         | `"body"` | CSS selector for portal target |
| `close_on_outside_click` | `bool`           | `true`   | Close when clicking backdrop   |
| `close_on_escape`        | `bool`           | `true`   | Close when pressing Escape key |
| `attributes`             | `Vec<Attribute>` | `[]`     | Standard HTML attributes       |
| `children`               | `Element`        | required | Dialog content                 |

Automatically receives ARIA attributes:

- `role="dialog"`
- `aria-modal` (true for modal dialogs)
- `aria-labelledby` (references title)
- `aria-describedby` (references description)

#### DialogTitle

| Prop         | Type             | Default  | Description              |
| ------------ | ---------------- | -------- | ------------------------ |
| `class`      | `String`         | `""`     | Additional CSS classes   |
| `attributes` | `Vec<Attribute>` | `[]`     | Standard HTML attributes |
| `children`   | `Element`        | required | Title text               |

Renders as `<h2>` element with unique ID for accessibility.

#### DialogDescription

| Prop         | Type             | Default  | Description              |
| ------------ | ---------------- | -------- | ------------------------ |
| `class`      | `String`         | `""`     | Additional CSS classes   |
| `attributes` | `Vec<Attribute>` | `[]`     | Standard HTML attributes |
| `children`   | `Element`        | required | Description text         |

Renders as `<p>` element with unique ID for accessibility.

#### DialogClose

| Prop         | Type             | Default  | Description              |
| ------------ | ---------------- | -------- | ------------------------ |
| `attributes` | `Vec<Attribute>` | `[]`     | Standard HTML attributes |
| `children`   | `Element`        | required | Button content           |

Closes the dialog when clicked.

### Alert Dialog Example

```rust
#[component]
fn DeleteConfirmation() -> Element {
    rsx! {
        Dialog {
            modal: true,
            DialogTrigger {
                class: "btn btn-destructive",
                "Delete Account"
            }
            DialogOverlay {}
            DialogContent {
                class: "max-w-md",
                DialogTitle {
                    class: "text-red-600 font-bold",
                    "⚠️ Are you absolutely sure?"
                }
                DialogDescription {
                    "This action cannot be undone. This will permanently "
                    "delete your account and remove your data from our servers."
                }
                div {
                    class: "flex justify-end gap-2 mt-6",
                    DialogClose {
                        class: "btn btn-secondary",
                        "Cancel"
                    }
                    DialogClose {
                        class: "btn btn-destructive",
                        "Delete Account"
                    }
                }
            }
        }
    }
}
```

### Form Dialog Example

```rust
#[component]
fn EditProfile() -> Element {
    rsx! {
        Dialog {
            DialogTrigger {
                class: "btn btn-primary",
                "Edit Profile"
            }
            DialogOverlay {}
            DialogContent {
                DialogTitle { "Edit Profile" }
                DialogDescription {
                    "Make changes to your profile here. Click save when you're done."
                }
                div {
                    class: "space-y-4 my-4",
                    div {
                        label {
                            class: "block text-sm font-medium mb-1",
                            "Name"
                        }
                        input {
                            class: "input",
                            r#type: "text",
                            placeholder: "Enter your name"
                        }
                    }
                    div {
                        label {
                            class: "block text-sm font-medium mb-1",
                            "Email"
                        }
                        input {
                            class: "input",
                            r#type: "email",
                            placeholder: "email@example.com"
                        }
                    }
                }
                div {
                    class: "flex justify-end gap-2",
                    DialogClose {
                        class: "btn btn-secondary",
                        "Cancel"
                    }
                    DialogClose {
                        class: "btn btn-primary",
                        "Save Changes"
                    }
                }
            }
        }
    }
}
```

### Features

- **Modal & Non-Modal Support**: Full modal with overlay and focus trap, or non-modal mode
-**Focus Trap**: Automatically traps focus within modal dialogs using Tab key handling
-**Body Scroll Lock**: Prevents scrolling outside modal when open (with layout shift prevention)
-**Controlled/Uncontrolled**: Can be controlled externally or manage state internally
-**Keyboard Controls**: Escape key to close with proper cleanup (configurable)
-**Click Outside**: Backdrop click to close (configurable)
-**Portal Rendering**: Uses Portal component to render outside parent DOM
-**Screen Reader Announcements**: Proper ARIA labeling with Title and Description
-**Accessibility**: Full WAI-ARIA dialog pattern implementation
-**Context API**: Shared state between all dialog components
-**Auto Focus**: Automatically focuses first focusable element on open
-**State Callbacks**: `on_open_change` for reacting to state changes

### Use Cases

1. **Confirmation Dialogs** - Delete confirmations, logout prompts
2. **Forms** - Edit profile, settings, data entry
3. **Alerts** - Important notifications requiring acknowledgment
4. **Media Viewers** - Image galleries, video players
5. **Complex Interactions** - Multi-step wizards, detailed views

### Implementation Details

The Dialog component uses:

- **Context API** to share state between trigger, content, and close buttons
- **Portal component** to render content at the document root
- **JavaScript event listeners** for Escape key handling
- **Signal** for reactive open/closed state
- **Memos** for generating unique ARIA IDs
- **Scrollbar width compensation** to prevent layout shift when locking scroll

**Scroll Lock Implementation:**
When a modal dialog opens, the component:

1. Calculates the scrollbar width (`window.innerWidth - document.documentElement.clientWidth`)
2. Sets `overflow: hidden` on the body
3. Adds `padding-right` equal to scrollbar width to prevent layout shift
4. Stores original values for restoration
5. Restores everything when dialog closes

This ensures the page content doesn't shift horizontally when the scrollbar disappears.

The component is split into composable parts following the Radix UI pattern:

- `Dialog` - Root provider with state management
- `DialogTrigger` - Button to open dialog
- `DialogOverlay` - Semi-transparent backdrop (modal only)
- `DialogContent` - Main container with Portal
- `DialogTitle` - Accessible title (required)
- `DialogDescription` - Accessible description (recommended)
- `DialogClose` - Button(s) to close dialog

### Best Practices

1. **Always include DialogTitle** for screen reader users
2. **Add DialogDescription** for context
3. **Use semantic button text** ("Delete", not "Yes")
4. **Consider close_on_outside_click** based on context
5. **Test keyboard navigation** (Tab, Escape)
6. **Style focus indicators** for accessibility
7. **Use appropriate variants** (destructive for delete actions)
8. **Keep content concise** in alert dialogs
9. **Validate forms** before allowing dialog close
10. **Provide clear actions** (primary vs secondary buttons)

### Accessibility

- **WAI-ARIA Dialog Pattern** compliant
-`role="dialog"` on content
-`aria-modal="true"` for modal dialogs
-`aria-labelledby` references title
-`aria-describedby` references description
- ✅ Keyboard support (Escape to close)
- ✅ Focus management (stays within dialog)
- ✅ Screen reader announcements
- ✅ Backdrop click handling

### Styling Recommendations

```css
/* Base dialog content styles */
.dialog-content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 9999;
}

/* Overlay/backdrop */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  animation: fadeIn 150ms ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .dialog-content {
    background: #1f2937;
    color: white;
  }
}
```

---

## Empty

An Empty state component for displaying "no content" scenarios. Perfect for search results, empty lists, inbox zero states, and other situations where you need to communicate the absence of data.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{
    Empty, EmptyHeader, EmptyMedia, EmptyMediaVariant,
    EmptyTitle, EmptyDescription, EmptyContent
};

#[component]
fn App() -> Element {
    rsx! {
        Empty {
            EmptyHeader {
                EmptyMedia {
                    variant: EmptyMediaVariant::Icon,
                    // Icon SVG here
                }
                EmptyTitle { "No results found" }
                EmptyDescription { "Try adjusting your search" }
            }
            EmptyContent {
                Button { "Clear filters" }
            }
        }
    }
}
```

### Empty with Icon Variant

```rust
Empty {
    class: "min-h-[300px]",
    EmptyHeader {
        EmptyMedia {
            variant: EmptyMediaVariant::Icon,
            svg {
                class: "size-6",
                // SVG icon
            }
        }
        EmptyTitle { "No files found" }
        EmptyDescription { "You haven't uploaded any files yet." }
    }
    EmptyContent {
        Button { "Upload file" }
    }
}
```

### Simple Empty (No Icon)

```rust
Empty {
    EmptyHeader {
        EmptyTitle { "No items" }
        EmptyDescription { "There are no items to display at this time." }
    }
}
```

### Props

#### Empty

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Empty state content    |

#### EmptyHeader

| Prop       | Type             | Default  | Description                                |
| ---------- | ---------------- | -------- | ------------------------------------------ |
| `class`    | `Option<String>` | `None`   | Additional CSS classes                     |
| `children` | `Element`        | Required | Header content (media, title, description) |

#### EmptyMedia

| Prop       | Type                | Default   | Description            |
| ---------- | ------------------- | --------- | ---------------------- |
| `variant`  | `EmptyMediaVariant` | `Default` | Visual style variant   |
| `class`    | `Option<String>`    | `None`    | Additional CSS classes |
| `children` | `Element`           | Required  | Icon or image content  |

#### EmptyTitle

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Title text             |

#### EmptyDescription

| Prop       | Type             | Default  | Description            |
| ---------- | ---------------- | -------- | ---------------------- |
| `class`    | `Option<String>` | `None`   | Additional CSS classes |
| `children` | `Element`        | Required | Description text       |

#### EmptyContent

| Prop       | Type             | Default  | Description                          |
| ---------- | ---------------- | -------- | ------------------------------------ |
| `class`    | `Option<String>` | `None`   | Additional CSS classes               |
| `children` | `Element`        | Required | Action buttons or additional content |

### Media Variants

```rust
pub enum EmptyMediaVariant {
    Default,  // Transparent background
    Icon,     // Muted background with icon styling
}
```

| Variant   | Description                                    | Use Case                          |
| --------- | ---------------------------------------------- | --------------------------------- |
| `Default` | Transparent background                         | For custom styled icons or images |
| `Icon`    | Muted background with size-10, rounded corners | For standard icon displays        |

### Empty State Examples

#### Search Results

```rust
Empty {
    EmptyHeader {
        EmptyMedia {
            variant: EmptyMediaVariant::Icon,
            // Search icon
        }
        EmptyTitle { "No results found" }
        EmptyDescription {
            "We couldn't find what you're looking for. Try adjusting your search."
        }
    }
    EmptyContent {
        Button { "Clear search" }
    }
}
```

#### Inbox Zero

```rust
Empty {
    EmptyHeader {
        EmptyMedia {
            variant: EmptyMediaVariant::Icon,
            // Mail icon
        }
        EmptyTitle { "Inbox zero!" }
        EmptyDescription { "You're all caught up. Great work!" }
    }
}
```

#### No Data

```rust
Empty {
    EmptyHeader {
        EmptyMedia {
            variant: EmptyMediaVariant::Icon,
            // Chart icon
        }
        EmptyTitle { "No data available" }
        EmptyDescription {
            "Start collecting data to see insights and analytics here."
        }
    }
    EmptyContent {
        div {
            class: "flex gap-2",
            Button { "Get started" }
            Button { variant: ButtonVariant::Outline, "Learn more" }
        }
    }
}
```

### Features

- ✅ Flexible layout with optional sections
- ✅ Two media variant styles (default, icon)
- ✅ Centered, balanced text layout
- ✅ Support for icons, images, or custom media
- ✅ Action button support in content area
- ✅ Responsive padding and spacing
- ✅ Link styling in descriptions
- ✅ Customizable through Tailwind classes

### Best Practices

1. **Use descriptive titles**: Be clear about what's missing
2. **Provide context**: Explain why the state is empty
3. **Offer actions**: Include buttons to help users move forward
4. **Choose appropriate icons**: Use icons that match the context
5. **Keep it simple**: Don't overcomplicate empty states
6. **Use EmptyMedia variant**: Use `Icon` variant for consistent styling
7. **Min-height**: Add `min-h-[300px]` or similar to prevent layout shifts
8. **Border styling**: Use `border` or `border-dashed` classes for visual boundaries

### Styling

The Empty component uses these base styles:

- Layout: `flex flex-col items-center justify-center`
- Spacing: `gap-6` between sections, `p-6` padding (md: `p-12`)
- Text: `text-center text-balance` for readable, centered text
- Border: `border-dashed rounded-lg` for subtle boundaries
- Media (Icon): `size-10 rounded-lg bg-muted` with proper icon sizing

---

## Portal

A Portal component that renders children into a different part of the DOM tree, equivalent to React's `ReactDOM.createPortal`. This is useful for modals, overlays, and tooltips that need to break out of their parent container's DOM hierarchy.

### Basic Usage

```rust
use dioxus::prelude::*;
use dioxus_components::Portal;

#[component]
fn App() -> Element {
    let mut show_modal = use_signal(|| false);

    rsx! {
        div {
            button {
                onclick: move |_| show_modal.set(true),
                "Show Modal"
            }

            if show_modal() {
                Portal {
                    container: "body",
                    class: "modal-overlay",
                    div {
                        class: "fixed inset-0 bg-black/50 flex items-center justify-center",
                        onclick: move |_| show_modal.set(false),
                        div {
                            class: "bg-white p-6 rounded-lg",
                            onclick: move |e| e.stop_propagation(),
                            h2 { "Modal Title" }
                            p { "This content is rendered in document.body!" }
                            button {
                                onclick: move |_| show_modal.set(false),
                                "Close"
                            }
                        }
                    }
                }
            }
        }
    }
}
```

### Props

| Prop        | Type             | Default  | Description                                                         |
| ----------- | ---------------- | -------- | ------------------------------------------------------------------- |
| `container` | `String`         | `"body"` | CSS selector for target container (e.g., "body", "#root", ".modal") |
| `class`     | `Option<String>` | `None`   | Additional CSS classes for the portal wrapper                       |
| `id`        | `Option<String>` | `None`   | ID attribute for the portal wrapper                                 |

### Features

- **DOM Manipulation**: Uses JavaScript to physically move the portal element to the specified container
- **Client-Side Only**: Renders only after mounting to avoid SSR issues
- **Flexible Positioning**: Content can be positioned using CSS (typically `fixed` or `absolute`)
- **Event Handling**: Events bubble normally within the portal content
- **Multiple Portals**: Can render multiple portals to different containers

### Common Use Cases

#### Modal Dialog

```rust
Portal {
    container: "body",
    div {
        class: "fixed inset-0 z-50 bg-black/50 flex items-center justify-center",
        div {
            class: "bg-card p-6 rounded-lg shadow-xl max-w-md",
            h2 { class: "text-xl font-bold mb-4", "Confirm Action" }
            p { class: "mb-4", "Are you sure you want to proceed?" }
            div {
                class: "flex gap-2 justify-end",
                button { "Cancel" }
                button { "Confirm" }
            }
        }
    }
}
```

#### Dropdown Menu

```rust
Portal {
    container: "body",
    div {
        class: "absolute",
        style: "top: {y}px; left: {x}px;",
        div {
            class: "bg-card border rounded-md shadow-lg p-2",
            button { class: "w-full text-left px-3 py-2 hover:bg-accent", "Option 1" }
            button { class: "w-full text-left px-3 py-2 hover:bg-accent", "Option 2" }
            button { class: "w-full text-left px-3 py-2 hover:bg-accent", "Option 3" }
        }
    }
}
```

#### Toast Notification

```rust
Portal {
    container: "body",
    div {
        class: "fixed top-4 right-4 z-50",
        div {
            class: "bg-card border rounded-lg shadow-lg p-4 max-w-sm",
            div { class: "font-semibold", "Notification" }
            div { class: "text-sm text-muted-foreground", "Action completed successfully!" }
        }
    }
}
```

### Implementation Details

The Portal component:

1. Generates a unique ID for the portal element
2. Waits for the component to mount (client-side only)
3. Uses JavaScript (`onmounted` event) to move the portal element to the target container
4. The content is physically moved in the DOM tree, not just positioned with CSS
5. This matches React's `createPortal` behavior exactly

### Best Practices

- Use `container: "body"` for modals and overlays that should appear above all content
- Add `z-index` classes to ensure proper stacking order
- Use `fixed` positioning for overlays that cover the viewport
- Implement click-outside-to-close by adding `onclick` to the overlay with `e.stop_propagation()` on the content
- Clean up any event listeners when the portal unmounts

### Accessibility

- Ensure keyboard navigation works within the portal
- Manage focus when opening/closing portals
- Add ARIA attributes for screen readers (`role`, `aria-modal`, etc.)
- Trap focus within modals to prevent tabbing to background content

---

## Spinner

A loading spinner component using animated icon.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{Spinner, SpinnerSize};

#[component]
fn App() -> Element {
    rsx! {
        Spinner {}
        Spinner {
            size: SpinnerSize::Large,
            color: "text-primary"
        }
    }
}
```

### Props

| Prop    | Type             | Default          | Description            |
| ------- | ---------------- | ---------------- | ---------------------- |
| `size`  | `SpinnerSize`    | `Small`          | Spinner size           |
| `color` | `Option<String>` | `"text-current"` | Tailwind color class   |
| `class` | `Option<String>` | `None`           | Additional CSS classes |

### Sizes

```rust
// Small (16px)
Spinner { size: SpinnerSize::Small }

// Medium (24px)
Spinner { size: SpinnerSize::Medium }

// Large (32px)
Spinner { size: SpinnerSize::Large }

// XLarge (48px)
Spinner { size: SpinnerSize::XLarge }
```

### Colors

```rust
// Primary color
Spinner { color: "text-primary" }

// Destructive (red)
Spinner { color: "text-destructive" }

// Secondary
Spinner { color: "text-secondary-foreground" }

// White (for dark backgrounds)
Spinner { color: "text-white" }
```

### In Buttons

```rust
Button {
    class: "gap-2",
    Spinner { size: SpinnerSize::Small, color: "text-primary-foreground" }
    "Loading..."
}
```

---

## Tooltip

Displays additional information when hovering over or focusing on an element.

### Basic Usage

```rust
use dioxus::prelude::*;
use crate::components::{TooltipProvider, Tooltip, TooltipTrigger, TooltipContent, TooltipSide};

#[component]
fn App() -> Element {
    rsx! {
        TooltipProvider {
            Tooltip {
                TooltipTrigger {
                    button { "Hover me" }
                }
                TooltipContent {
                    side: TooltipSide::Top,
                    "This is a tooltip"
                }
            }
        }
    }
}
```

### Props

#### TooltipProvider

| Prop                        | Type   | Default | Description                           |
| --------------------------- | ------ | ------- | ------------------------------------- |
| `delay_duration`            | `u64`  | `400`   | Delay before tooltip opens (ms)       |
| `skip_delay_duration`       | `u64`  | `300`   | Grace period before delay resets (ms) |
| `disable_hoverable_content` | `bool` | `false` | Don't allow hovering the content      |

#### Tooltip

| Prop                        | Type                   | Default | Description               |
| --------------------------- | ---------------------- | ------- | ------------------------- |
| `open`                      | `Option<Signal<bool>>` | `None`  | Controlled open state     |
| `default_open`              | `bool`                 | `false` | Initial open state        |
| `delay_duration`            | `Option<u64>`          | `None`  | Override provider delay   |
| `disable_hoverable_content` | `Option<bool>`         | `None`  | Override provider setting |

#### TooltipTrigger

| Prop      | Type                   | Default | Description            |
| --------- | ---------------------- | ------- | ---------------------- |
| `class`   | `Option<String>`       | `None`  | Additional CSS classes |
| `onclick` | `Option<EventHandler>` | `None`  | Click handler          |

#### TooltipContent

| Prop          | Type             | Default | Description                  |
| ------------- | ---------------- | ------- | ---------------------------- |
| `side`        | `TooltipSide`    | `Top`   | Position relative to trigger |
| `side_offset` | `i32`            | `4`     | Distance from trigger (px)   |
| `class`       | `Option<String>` | `None`  | Additional CSS classes       |
| `aria_label`  | `Option<String>` | `None`  | Accessibility label          |

### Tooltip Sides

```rust
// Top - Appears above trigger
TooltipContent { side: TooltipSide::Top, "Tooltip" }

// Right - Appears to the right
TooltipContent { side: TooltipSide::Right, "Tooltip" }

// Bottom - Appears below trigger
TooltipContent { side: TooltipSide::Bottom, "Tooltip" }

// Left - Appears to the left
TooltipContent { side: TooltipSide::Left, "Tooltip" }
```

### With Arrow

```rust
use crate::components::TooltipArrow;

TooltipContent {
    side: TooltipSide::Top,
    TooltipArrow {}
    "Tooltip text"
}
```

### Controlled State

```rust
let mut is_open = use_signal(|| false);

TooltipProvider {
    Tooltip {
        open: is_open,
        TooltipTrigger {
            button { "Hover me" }
        }
        TooltipContent {
            "This is a controlled tooltip"
        }
    }
}
```

### Multiple Tooltips

```rust
TooltipProvider {
    div {
        class: "flex gap-4",

        Tooltip {
            TooltipTrigger { "Hover 1" }
            TooltipContent { "Tooltip 1" }
        }

        Tooltip {
            TooltipTrigger { "Hover 2" }
            TooltipContent { "Tooltip 2" }
        }
    }
}
```

---

## Common Patterns

### Custom Styling

All components support the `class` prop for additional Tailwind classes:

```rust
Button {
    class: "rounded-full px-6 py-3 text-lg",
    "Styled Button"
}
```

### Dark Mode Support

All components include dark mode variants via Tailwind CSS:

```rust
// Automatically supports dark mode with dark: prefix
Badge {
    variant: BadgeVariant::Destructive,
    "Dark mode ready"
}
```

### Composition

Combine multiple components:

```rust
div {
    class: "flex items-center gap-4",

    Avatar {
        AvatarImage { src: "https://example.com/avatar.jpg" }
        AvatarFallback { "JD" }
    }

    div {
        h3 { "John Doe" }
        Badge { "Active" }
    }
}
```

### Event Handling

```rust
Button {
    onclick: move |_| {
        println!("Button clicked!");
    },
    "Click me"
}
```

---

## Accessibility

All components follow WAI-ARIA design patterns:

- **Accordion**: ARIA roles, keyboard navigation, focus management
- **Avatar**: Image alt text, fallback for loading states
- **Badge**: Semantic HTML with proper color contrast
- **Button**: Disabled state, aria-invalid for forms, keyboard accessible
- **Spinner**: ARIA label for screen readers
- **Tooltip**: ARIA described by, keyboard triggers

---

## Styling Guide

Components use Tailwind CSS v4 with a comprehensive theme:

### Colors

- `primary` / `primary-foreground` - Main brand color
- `secondary` / `secondary-foreground` - Secondary actions
- `destructive` / `destructive-foreground` - Dangerous actions (red)
- `accent` / `accent-foreground` - Accent highlights
- `muted` / `muted-foreground` - Disabled or secondary text
- `background` / `foreground` - Base colors
- `border` / `input` - Form elements

### Customization

Update theme colors in `tailwind.css`:

```css
@theme {
  --color-primary: hsl(221.2 83.2% 53.3%);
  --color-primary-foreground: hsl(210 40% 98%);
  /* ... more colors ... */
}
```

---

## Contributing

When creating new components:

1. Create a subfolder in `/src/components/{component_name}/`
2. Add three files:
   - `{component_name}.rs` - Component logic
   - `{component_name}.css` - Component styles
   - `mod.rs` - Module exports
3. Update `/src/components/mod.rs` to export the new component
4. Add CSS import to `/tailwind.css`
5. Add documentation to this file

---

## Resources

- [Dioxus Documentation]https://dioxuslabs.com/learn/0.7/
- [Tailwind CSS]https://tailwindcss.com/
- [Radix UI Primitives]https://www.radix-ui.com/primitives
- [WAI-ARIA Authoring Practices]https://www.w3.org/WAI/ARIA/apg/