import { router } from '@inertiajs/react'; import { KeyRound } from 'lucide-react'; import { destroy } from '@/actions/Laravel/Passkeys/Http/Controllers/PasskeyRegistrationController'; import { Heading } from '@/components/layout'; import { PasskeyItem, PasskeyRegister as PasskeyRegistration } from '@/components/auth'; import type { Passkey } from '@/types/auth'; export type Props = { canManagePasskeys?: boolean; passkeys?: Passkey[]; }; const EmptyState = () => { return (
No passkeys yet
Add a passkey to sign in without a password