mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
import clsx from "clsx";
|
|
|
|
export function Container({
|
|
className,
|
|
...props
|
|
}: React.ComponentPropsWithoutRef<"div">) {
|
|
return (
|
|
<div
|
|
className={clsx("mx-auto max-w-7xl px-4 sm:px-6 lg:px-8", className)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|