import { cn } from "@/lib/utils"; export default function VizPanel({ title, subtitle, methodNote, right, children, className, testid, bodyClass, }) { return (
{title}
{subtitle ? (
{subtitle}
) : null}
{right ?
{right}
: null}
{children}
{methodNote ? (
{methodNote}
) : null}
); }