Frontend-Data-Eyond / src /app /components /ui /aspect-ratio.tsx
ishaq101's picture
[NOTICKET] Demo Frontend
a3629ae
raw
history blame contribute delete
284 Bytes
"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 };