项目文件夹

文件
Alexandru Paduraru 4dda651245 Initial commit
2025-10-22 14:59:57 +03:00

16 行
350 B
TypeScript

import { cn } from "@/lib/utils"
export function PageNav({
children,
className,
...props
}: React.ComponentProps<"div">) {
return (
<div className={cn("container-wrapper scroll-mt-24", className)} {...props}>
<div className="container flex items-center justify-between gap-4 py-4">
{children}
</div>
</div>
)
}