Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { AspectRatio, Center } from "@chakra-ui/react"
export const AspectRatioBasic = () => {
return (
<AspectRatio bg="bg.muted" ratio={2 / 1}>
<Center fontSize="xl">2 / 1</Center>
</AspectRatio>
)
}