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