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.
10 lines (9 loc) • 312 B
TypeScript
import { type Component, type Snippet } from 'svelte';
type $$ComponentProps = {
label: string;
href: string;
labelIcon: Component | Snippet;
};
declare const UserButtonLink: Component<$$ComponentProps, {}, "">;
type UserButtonLink = ReturnType<typeof UserButtonLink>;
export default UserButtonLink;