mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-22 19:39:01 -05:00
3cf796b040
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
import { cn } from "@formbricks/lib/cn";
|
|
|
|
interface ContentWrapperProps {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export default function ContentWrapper({ children, className }: ContentWrapperProps) {
|
|
return <div className={cn("mx-auto max-w-7xl p-6", className)}>{children}</div>;
|
|
}
|