import { cn } from '@/lib/utils'; import { PropsWithChildren } from 'react'; type LabelCardProps = { className?: string; } & PropsWithChildren; export function LabelCard({ children, className }: LabelCardProps) { return (