flowbite-svelte
Version:
Flowbite components for Svelte
18 lines (17 loc) • 529 B
TypeScript
import type { TableBodyRowProps } from "../types";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [TableBodyRowProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1795)
* ## Props
* @prop children
* @prop class: className
* @prop color
* @prop striped
* @prop hoverable
* @prop border
* @prop ...restProps
*/
declare const TableBodyRow: import("svelte").Component<TableBodyRowProps, {}, "">;
type TableBodyRow = ReturnType<typeof TableBodyRow>;
export default TableBodyRow;