'use client'; //=========================================== // THIS FILE IS AUTO-GENERATED FROM TEMPLATE. DO NOT EDIT IT DIRECTLY UNLESS YOU ALSO EDIT THE CORRESPONDING FILE IN packages/template //=========================================== import { Button } from '@hexclave/ui'; import { KeyRound } from 'lucide-react'; import { useId } from 'react'; import { useStackApp } from '..'; import { useTranslation } from '../lib/translations'; export function PasskeyButton({ type, }: { type: 'sign-in' | 'sign-up', }) { const { t } = useTranslation(); const hexclaveApp = useStackApp(); const styleId = useId().replaceAll(':', '-'); return ( <> ); }