-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
Feature Summary
I intend to implement a table component with the following feature:
- Pass theme options as props
How might the table component look like?
<script>
import { Table } from "svelte-admin";
const props = {
bordered: true,
dark: false,
responsive: true,
// ...
}
</script>
<Table {...props}>
<thead>
<tr>
<!-- content -->
</tr>
</thead>
<tbody>
<tr>
<!-- content -->
</tr>
</tbody>
<Table>
Metadata
Metadata
Assignees
Labels
No labels