Update nextjs-vercel

This commit is contained in:
Rami Bitar
2026-06-28 15:24:24 -04:00
parent cc75b4dac0
commit 2b93443340
65 changed files with 12702 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
"use client"
import { AspectRatio as AspectRatioPrimitive } from "radix-ui"
function AspectRatio({
...props
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />
}
export { AspectRatio }