import clsx from "clsx"; type LabelProps = { title: string; value: any; hoverValue?: string; className?: string; }; export default function Label({ title, value, hoverValue, className = "bg-neutral-700", }: LabelProps) { return (

{title}

{value}

); }