sofia-cloud / src /components /ui /aspect-ratio.tsx
Gmagl
Add Sofia Cloud complete files
333c51a
raw
history blame
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 }