UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

15 lines (14 loc) 460 B
import type { TableBodyProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [TableBodyProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1721) * ## Props * @prop children * @prop bodyItems * @prop class: className * @prop ...restProps */ declare const TableBody: import("svelte").Component<TableBodyProps, {}, "">; type TableBody = ReturnType<typeof TableBody>; export default TableBody;