Files
flint/apps/web/components/ui/Container.tsx
T

12 lines
295 B
TypeScript

import type { HTMLAttributes } from "react";
import { cn } from "./cn";
export function Container({ className, ...props }: HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("mx-auto w-full max-w-[1200px] px-4 sm:px-6 lg:px-8", className)}
{...props}
/>
);
}