import { cn } from "@app/lib/cn"; import { Button } from "./ui/button"; export type LabelBadgeProps = { name: string; color: string; onClick?: () => void; className?: string; }; export function LabelBadge({ onClick, name, color, className }: LabelBadgeProps) { return ( ); }