@lunit/oui
Version:
Lunit Oncology UI components
10 lines (9 loc) • 380 B
TypeScript
import type { TypographyProps as MuiTypographyProps } from '@mui/material';
export interface BaseEllipsisTypographyProps extends MuiTypographyProps {
direction?: 'row' | 'column';
maxLines?: number;
}
export interface EllipsisTypographyProps extends BaseEllipsisTypographyProps {
tooltipPlacement?: 'top' | 'right' | 'bottom' | 'left';
heightThreshold?: number;
}