File size: 260 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
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>
)
}
|