chessecon / frontend /src /components /ui /aspect-ratio.tsx
suvasis's picture
code add
e4d7d50
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 };