mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
12 lines
282 B
TypeScript
12 lines
282 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 };
|