import { Text } from "preact-i18n"; import Modal from "../../../components/ui/Modal"; interface Props { onClose: () => void; text: string; } export function ClipboardModal({ onClose, text }: Props) { return ( } actions={[ { onClick: onClose, confirmation: true, text: , }, ]}> {location.protocol !== "https:" && (

)} {" "} {text}
); }