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