import clsx from 'clsx'; import { ReactNode } from 'react'; interface Props { children?: ReactNode; label: string; colClassName?: string; className?: string; } export function DetailsRow({ label, children, colClassName, className, }: Props) { return (