import { motion } from 'framer-motion';
import type { ComponentProps } from 'react';
import { cn } from '@/lib/utils';
function Table({ className, ref, ...props }: ComponentProps<'table'>) {
return (
);
}
function TableHeader({ className, ref, ...props }: ComponentProps<'thead'>) {
return (
);
}
function TableBody({ className, ref, ...props }: ComponentProps<'tbody'>) {
return ;
}
function TableFooter({ className, ref, ...props }: ComponentProps<'tfoot'>) {
return (
tr]:last:border-b-0',
className,
)}
{...props}
/>
);
}
function TableRow({ className, ref, ...props }: ComponentProps) {
return (
);
}
function TableHead({ className, ref, ...props }: ComponentProps<'th'>) {
return (
|
);
}
function TableCell({ className, ref, ...props }: ComponentProps<'td'>) {
return (
|
);
}
function TableCaption({ className, ref, ...props }: ComponentProps<'caption'>) {
return (
);
}
export { Table, TableHeader, TableBody, TableFooter, TableHead, TableRow, TableCell, TableCaption };