import { cn } from "@/lib/utils"; interface Props { className?: string; containerClassName?: string; isBeta?: boolean; valueClassName?: string; label: string; value: React.ReactNode | null; hideExpandable?: boolean; orientation?: "horizontal" | "vertical"; align?: "left" | "right"; } export default function LogEntryDetailsView(props: Props) { if (props.value === null) { return null; } const orientation = props.orientation || "vertical"; return (