Files
hellojewellers/src/components/ui/aspect-ratio.tsx
priyanshuvish d58c08ce28 first commit
2025-10-14 12:07:18 +05:30

12 lines
290 B
TypeScript

"use client";
import * as AspectRatioPrimitive from "@radix-ui/react-aspect-ratio@1.1.2";
function AspectRatio({
...props
}: React.ComponentProps<typeof AspectRatioPrimitive.Root>) {
return <AspectRatioPrimitive.Root data-slot="aspect-ratio" {...props} />;
}
export { AspectRatio };