mirror of
https://github.com/jakejarvis/hoot.git
synced 2025-10-18 20:14:25 -04:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
"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 }
|