import Dialog from '~/components/Dialog'; import type { Machine } from '~/types'; interface DeleteProps { machine: Machine; isOpen: boolean; setIsOpen: (isOpen: boolean) => void; } export default function Delete({ machine, isOpen, setIsOpen }: DeleteProps) { return ( Remove {machine.givenName} This machine will be permanently removed from your network. To re-add it, you will need to reauthenticate to your tailnet from the device. ); }