UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

22 lines (21 loc) 621 B
import { Meta, StoryObj } from '@storybook/react'; import { SignInForm } from './SignInForm'; declare const meta: Meta<typeof SignInForm>; export default meta; type Story = StoryObj<typeof SignInForm>; /** * Default sign in form with SSO providers and email/password. */ export declare const Default: Story; /** * Sign in form with only SSO providers, no email/password form. */ export declare const SsoOnly: Story; /** * Sign in form with only email/password, no SSO providers. */ export declare const EmailPasswordOnly: Story; /** * Sign in form with large buttons. */ export declare const LargeButtons: Story;