) {
return (
);
}
function TableHead({ className, ref, ...props }: ComponentProps<'th'>) {
return (
| [role=checkbox]]:translate-y-[2px]',
className,
)}
{...props}
/>
);
}
function TableCell({ className, ref, ...props }: ComponentProps<'td'>) {
return (
| [role=checkbox]]:translate-y-[2px]',
className,
)}
{...props}
/>
);
}
function TableCaption({ className, ref, ...props }: ComponentProps<'caption'>) {
return (
);
}
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };
|