flowbite-svelte
Version:
Flowbite components for Svelte
25 lines (24 loc) • 775 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { HTMLTdAttributes } from 'svelte/elements';
declare const __propDef: {
props: HTMLTdAttributes & {
tdClass?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type TableBodyCellProps = typeof __propDef.props;
export type TableBodyCellEvents = typeof __propDef.events;
export type TableBodyCellSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let tdClass: $$Props['tdClass'] = 'px-6 py-4 whitespace-nowrap font-medium ';
*/
export default class TableBodyCell extends SvelteComponentTyped<TableBodyCellProps, TableBodyCellEvents, TableBodyCellSlots> {
}
export {};