import { cn } from '@/lib/utils' import { TruncatedCell } from '@/components/data-table/core/truncated-cell' interface TruncatedTextProps { text: string className?: string maxWidth?: string side?: 'top' | 'bottom' | 'left' | 'right' } export function TruncatedText({ text, className, maxWidth = 'max-w-[200px]', side = 'top', }: TruncatedTextProps) { return ( {text} ) }