mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
11 lines
286 B
TypeScript
11 lines
286 B
TypeScript
import clsx from "clsx";
|
|
|
|
interface ContentWrapperProps {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export default function ContentWrapper({ children, className }: ContentWrapperProps) {
|
|
return <div className={clsx("mx-auto max-w-7xl p-6", className)}>{children}</div>;
|
|
}
|