Table

Styled HTML table.

Example

NameStatusRole
aliceactiveadmin
bobidleuser
carolofflineuser

Props

PropTypeDefaultDescription
classstringAdditional CSS classes
childrenSnippetTable 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>