import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
/**
* For changing the tag from
to | if its in a TableHeader
*/ isHeader?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent;
};
slots: {
default: {};
};
};
export type TableCellProps = typeof __propDef.props;
export type TableCellEvents = typeof __propDef.events;
export type TableCellSlots = typeof __propDef.slots;
/**
* TableCell
*
* Cell in a table. Intended to be used in a `TableRow` or a `TableHeader`
*
* Props:
* - isHeader: For changing the tag from `| ` to ` | ` if its in a `TableHeader`
*
* Slots:
* - default: Cell content
*/
export default class TableCell extends SvelteComponentTyped {
}
export {};
| |