import { forwardRef } from 'react'; import { cn } from '#utils'; export const TableCell = forwardRef>( function TableCell({ className, ...props }, ref) { return ( ); } );