@vertisanpro/flowbite-react
Version:
Non-Official React components built for Flowbite and Tailwind CSS
12 lines (11 loc) • 362 B
TypeScript
import type { ComponentProps, FC } from 'react';
import type { DeepPartial } from '../../types';
export interface FlowbiteTableRowTheme {
base: string;
hovered: string;
striped: string;
}
export interface TableRowProps extends ComponentProps<'tr'> {
theme?: DeepPartial<FlowbiteTableRowTheme>;
}
export declare const TableRow: FC<TableRowProps>;