UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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