xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
15 lines • 471 B
TypeScript
interface LoginFormProps {
onSubmit?: (formData: {
email: string;
password: string;
}) => void;
isLoading?: boolean;
error?: string;
demoCredentials?: {
email: string;
password: string;
};
}
export declare function LoginForm({ onSubmit, isLoading: externalLoading, error: externalError, demoCredentials }: LoginFormProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=login-form.d.ts.map