Table
Styled HTML table.
Example
| Name | Status | Role |
|---|---|---|
| alice | active | admin |
| bob | idle | user |
| carol | offline | user |
Props
| Prop | Type | Default | Description |
|---|---|---|---|
class | string | — | Additional CSS classes |
children | Snippet | — | Table content (thead, tbody) |
Usage
<script>
import { Table } from '@chrissnell/chonky-ui';
</script>
<Table>
<thead><tr><th>Col</th></tr></thead>
<tbody><tr><td>Value</td></tr></tbody>
</Table>