svelte-clerk
Version:
Svelte Clerk is the easiest way to add authentication and user management to your Svelte and SvelteKit applications. Add sign up, sign in, and profile management to your application in minutes.
9 lines (8 loc) • 326 B
TypeScript
import type { UserButtonProps } from '@clerk/shared/types';
import { type Snippet } from 'svelte';
type $$ComponentProps = UserButtonProps & {
children?: Snippet;
};
declare const UserButton: import("svelte").Component<$$ComponentProps, {}, "">;
type UserButton = ReturnType<typeof UserButton>;
export default UserButton;