import { cn } from "@formbricks/lib/cn"; interface ContentWrapperProps { children: React.ReactNode; className?: string; } export default function ContentWrapper({ children, className }: ContentWrapperProps) { return
{children}
; }