UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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