Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { AspectRatio } from "@chakra-ui/react"
export const Iframe = (props: React.IframeHTMLAttributes<HTMLElement>) => {
return (
<AspectRatio ratio={16 / 9} mb="10" overflow="hidden" rounded="md">
<iframe {...props} />
</AspectRatio>
)
}