import { Modal } from './ui/Modal'; interface TrustModalProps { open: boolean; onClose: () => void; pairing: boolean; } export function TrustModal({ open, onClose, pairing }: TrustModalProps) { return (
{pairing ? ( <>

Continue on Your Device

If prompted, unlock your iPhone or iPad and tap Trust. Enter your passcode if asked.

Developer Mode must be enabled on your device. Go to Settings → Privacy & Security → Developer Mode.

) : ( <>

Device Paired

Your device is connected and ready for signing.

)}
); }