mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-10-02 08:06:17 +00: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 }
|