import { cn } from '@/lib/utils'; import { type VariantProps, cva } from 'class-variance-authority'; import type { HTMLAttributes, PropsWithChildren } from 'react'; const dataTableColumnCellVariants = cva('flex items-center space-x-2', { variants: { variant: { default: '', numeric: 'justify-end pr-2', }, }, defaultVariants: { variant: 'default', }, }); interface DataTableColumnCellProps extends HTMLAttributes, VariantProps {} export function DataTableColumnCell({ className, variant = 'default', children, ...props }: PropsWithChildren) { return (
{children}
); }