UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

24 lines (23 loc) 606 B
import type { TableProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [TableProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1685) * ## Props * @prop children * @prop footerSlot * @prop captionSlot * @prop items * @prop divClass * @prop striped * @prop hoverable * @prop border = true * @prop shadow * @prop color = "default" * @prop class: className * @prop classes * @prop ...restProps */ declare const Table: import("svelte").Component<TableProps, {}, "">; type Table = ReturnType<typeof Table>; export default Table;