import { Modal, ModalOverlay, ModalContent, ModalHeader, ModalCloseButton, ModalBody, Stack, ModalFooter, Text, } from '@chakra-ui/react' import { PublishFirstInfo } from 'components/shared/Info' import { useState } from 'react' import { ModalProps } from '../EmbedButton' export const IframeModal = ({ isPublished, publicId, isOpen, onClose, }: ModalProps) => { const [inputValues, setInputValues] = useState({ heightLabel: '100%', widthLabel: '100%', }) return ( Iframe {!isPublished && } Paste this anywhere in your HTML code: ) }