xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
15 lines • 615 B
TypeScript
import * as React from "react";
interface LoginPageProps extends React.HTMLAttributes<HTMLDivElement> {
children?: React.ReactNode;
showLogo?: boolean;
logo?: React.ReactNode;
title?: string;
subtitle?: string;
maxWidth?: "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl";
background?: "default" | "gradient" | "pattern";
backgroundImage?: string;
showBackgroundImage?: boolean;
}
declare const LoginPage: React.ForwardRefExoticComponent<LoginPageProps & React.RefAttributes<HTMLDivElement>>;
export { LoginPage };
//# sourceMappingURL=login-page.d.ts.map