import { HTMLAttributes } from "react";
import { cn } from "@/lib/utils";
type ContainerProps = HTMLAttributes & {
as?: "div" | "section" | "article" | "main" | "header" | "footer";
};
export function Container({
className,
as: Component = "div",
...props
}: ContainerProps) {
return (
);
}