aimusic-attribution / client /src /components /ui /aspect-ratio.tsx
emresar's picture
Upload folder using huggingface_hub
6678fa1 verified
raw
history blame contribute delete
269 Bytes
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 };