import { Typography } from '@mui/material'; import type { TableStyleAtom as TableStyle } from '../models'; interface Ellipsis { className?: string; dataStyle: TableStyle; disableRowCondition: boolean; formattedString: string; isRowHovered: boolean; isRowHighlighted?: boolean; } const EllipsisTypography = ({ formattedString, isRowHovered, disableRowCondition, className, dataStyle, isRowHighlighted }: Ellipsis): JSX.Element => ( {formattedString} ); export default EllipsisTypography;