'use client' import React from 'react' import { cn } from '../../../utils/cn' /** @deprecated Use `data-table` instead. */ export interface TableDescriptionCellProps { /** * The description text to display */ text: string /** * Optional additional CSS classes */ className?: string /** * Maximum number of lines to display before truncating * @default 3 */ maxLines?: number } /** * @deprecated Use `data-table` instead. */ export function TableDescriptionCell({ text, className, maxLines = 3 }: TableDescriptionCellProps) { return (