Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
280 Bytes
import { AspectRatio } from "@chakra-ui/react"
import { DecorativeBox } from "compositions/lib/decorative-box"
export const AspectRatioResponsive = () => (
<AspectRatio maxWidth="300px" ratio={{ base: 1, md: 16 / 9 }}>
<DecorativeBox>Box</DecorativeBox>
</AspectRatio>
)