import { motion } from 'framer-motion';
import { cn } from '@/lib/utils';
function Table({ className, ref, ...props }) {
return (
);
}
function TableHeader({ className, ref, ...props }) {
return (
);
}
function TableBody({ className, ref, ...props }) {
return (
);
}
function TableFooter({ className, ref, ...props }) {
return (
tr]:last:border-b-0',
className
)}
{...props}
/>
);
}
function TableRow({ className, ref, ...props }) {
return (
);
}
function TableHead({ className, ref, ...props }) {
return (
[role=checkbox]]:translate-y-[2px]',
className
)}
{...props}
/>
);
}
function TableCell({ className, ref, ...props }) {
return (
| [role=checkbox]]:translate-y-[2px]',
className
)}
{...props}
/>
);
}
function TableCaption({ className, ref, ...props }) {
return (
);
}
export {
Table,
TableHeader,
TableBody,
TableFooter,
TableHead,
TableRow,
TableCell,
TableCaption,
};
|