@appbuckets/react-ui
Version:
Just Another React UI Framework
9 lines (8 loc) • 323 B
TypeScript
import { UIMutableComponentProps } from '../generic';
export interface TableCellContentProps
extends UIMutableComponentProps<StrictTableCellContentProps, 'p'> {}
export interface StrictTableCellContentProps {
type?: 'content' | 'meta' | 'title';
/** Truncate the cell Content with Ellipsis */
truncate?: boolean;
}