import { cn } from "~/lib/utils"; export function Fieldset({ children, className, }: { children: React.ReactNode; className?: string; }) { return (
{children}
); }