mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
12 lines
219 B
React
12 lines
219 B
React
"use client"
|
|
|
|
import { AspectRatio as AspectRatioPrimitive } from "radix-ui"
|
|
|
|
function AspectRatio({
|
|
...props
|
|
}) {
|
|
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />;
|
|
}
|
|
|
|
export { AspectRatio }
|