import { cn } from "~/lib/utils"; import React from "react"; type Props = { children?: React.ReactNode; className?: string; }; const Panel = ({ children, className }: Props) => { return (