import { cn } from '@/lib/utils' import { ReactNode } from 'react' type CardProps = { title?: string children?: ReactNode header?: ReactNode } type CardItemProps = { title?: string | ReactNode description?: string | ReactNode align?: 'start' | 'center' | 'end' actions?: ReactNode column?: boolean className?: string } export function CardItem({ title, description, className, align = 'center', column, actions, }: CardItemProps) { return (