import type { InputHTMLAttributes, PropsWithChildren } from "react"; type AuthSwitchProps = InputHTMLAttributes & PropsWithChildren; export function AuthSwitch({ children, ...props }: AuthSwitchProps): JSX.Element { return ( ); }