import { cn } from '@/lib/utils'; import { PropsWithChildren } from 'react'; export type FormContainerProps = { className?: string; show?: boolean; } & PropsWithChildren; export function FormContainer({ children, show = true, className, }: FormContainerProps) { return show ? (
{children}
) : ( children ); }