shellphone.app/app/features/public-area/components/container.tsx
2022-07-09 01:34:18 +02:00

11 lines
312 B
TypeScript

import type { HTMLAttributes } from "react";
import clsx from "clsx";
type Props = HTMLAttributes<HTMLDivElement> & {
className?: string;
};
export default function Container({ className, ...props }: Props) {
return <div className={clsx("mx-auto max-w-7xl px-4 sm:px-6 lg:px-8", className)} {...props} />;
}