UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

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