flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
9 lines (8 loc) • 415 B
TypeScript
import { type ComponentPropsWithRef } from "react";
import type { ThemingProps } from "../../types";
export interface TableCellTheme {
base: string;
}
export interface TableCellProps extends ComponentPropsWithRef<"td">, ThemingProps<TableCellTheme> {
}
export declare const TableCell: import("react").ForwardRefExoticComponent<Omit<TableCellProps, "ref"> & import("react").RefAttributes<HTMLTableCellElement>>;