import { Clipboard } from 'phosphor-react'; import { Button, Dialog, Input, UseDialogProps, dialogManager, useDialog } from '@sd/ui'; import { useZodForm } from '@sd/ui/src/forms'; interface Props extends UseDialogProps { title: string; // dialog title description?: string; // description of the dialog value: string; // value to be displayed as text or in an input box label?: string; // button label inputBox?: boolean; // whether the dialog should display the `value` in a disabled input box or as text } const AlertDialog = (props: Props) => { // maybe a copy-to-clipboard button would be beneficial too return ( {props.inputBox ? ( { navigator.clipboard.writeText(props.value); }} size="icon" > } /> ) : (
{props.value}
)}
); }; export function showAlertDialog(props: Omit) { dialogManager.create((dp) => ); }