A client-side React component that renders a styled "Back to Login" text link used across authentication screens. ## Key Components ### `BackToLoginLink` A button styled as an underlined text link, designed for auth flow navigation. **Props (`BackToLoginLinkProps`):** | Prop | Type | Default | Description | |---|---|---|---| | `onClick` | `() => void` | — | Callback fired when the link is clicked | | `label` | `string` | `'Back to Login'` | Customizable link text | | `className` | `string` | — | Optional class overrides via `cn` utility | ## Usage Example ```typescript import { BackToLoginLink } from './back-to-login-link' function ForgotPasswordScreen() { const handleBack = () => { router.push('/login') } return (