import { cn } from "@/lib/cn"; import { Label } from "./Label"; interface MetaRowProps { label: string; value: React.ReactNode; className?: string; } export function MetaRow({ label, value, className }: MetaRowProps) { return (
{value}
); }