import Dialog from '~/components/Dialog'; import type { PreAuthKey, User } from '~/types'; interface ExpireAuthKeyProps { authKey: PreAuthKey; user: User; } export default function ExpireAuthKey({ authKey, user }: ExpireAuthKeyProps) { return ( Expire Key Expire auth key? Expiring this authentication key will immediately prevent it from being used to authenticate new devices. This action cannot be undone. ); }