Files
creativetimofficial--ui/apps/www/components/page-nav.tsx
T
2026-07-13 12:49:11 +08:00

16 lines
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>
)
}