import './embed-modal.css'; import { t, Trans } from '@lingui/macro'; import Icon from './icon'; function EmbedModal({ html, url, width, height, onClose = () => {} }) { return (
{url && ( Open in new window {' '} )}
); } export default EmbedModal;