import { Text } from "preact-i18n"; import { Modal } from "@revoltchat/ui"; import { noopTrue } from "../../../lib/js"; import { ModalProps } from "../types"; export default function Clipboard({ text, ...props }: ModalProps<"clipboard">) { return ( } actions={[ { onClick: noopTrue, confirmation: true, children: , }, ]}> {location.protocol !== "https:" && (

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