general-eval-card / components /ui /aspect-ratio.tsx
Avijit Ghosh
added all the new files
509e21e
raw
history blame contribute delete
280 Bytes
"use client"
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio"
function AspectRatio({
...props
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />
}
export { AspectRatio }