--- ## VerifyEmailPage Auto-verifying email confirmation page. Sends GET to `apiPath` (default `/api/auth/verify-email`) on mount. Pair with `createVerifyEmailHandler(authDeps)` on the server. **Import:** `import { VerifyEmailPage } from '@urbicon-ui/auth';` ### Examples ```svelte ``` ### Api | Prop | Type | Required | Default | Description | | --- | --- | :---: | --- | --- | | token | `string` | yes | | Verification token from URL query parameter. | | apiPath | `string` | no | '/api/auth/verify-email' | ApiPath property for the VerifyEmailPage component | | class | `string` | no | | Extra classes on the root element. | | csrf | `CsrfClientOptions` | no | | CSRF cookie/header names — only needed when the server overrides the defaults via `config.csrf`. Mutating requests echo the token automatically. | | fetcher | `typeof globalThis.fetch` | no | | Custom fetch implementation for all API calls. Defaults to the global `fetch`. Useful for mock backends in demos/tests or custom retry/auth layers. | | slotClasses | `AuthPageSlotClasses` | no | | Per-slot class overrides. Keys: `root`, `card`, `title`, `form`, `field`, `submit`, `error`, `success`, `links`. | | t | `AuthLocale` | no | | Locale bundle. Auto-detected from i18n context when omitted. | | unstyled | `boolean` | no | | Strip all default styling. |