import type { HTMLAttributes } from "react"; import clsx from "clsx"; type Props = HTMLAttributes & { className?: string; }; export default function Container({ className, ...props }: Props) { return
; }