import type { ReactNode } from 'react' import { cn } from '@evofw/ui/lib/utils' const ACCENT_CLASS = { primary: 'font-medium text-primary', default: 'font-medium text-foreground', mono: 'font-mono text-sm text-primary', } as const export function DataGridPrimaryCell({ title, subtitle, accent = 'default', className, }: { title: ReactNode subtitle?: ReactNode accent?: keyof typeof ACCENT_CLASS className?: string }) { return (
{title} {subtitle ? ( {subtitle} ) : null}
) } export function DataGridMutedCell({ children, className, }: { children: ReactNode className?: string }) { return ( {children} ) }