UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

10 lines 402 B
import * as React from "react"; interface AuthLayoutProps extends React.HTMLAttributes<HTMLDivElement> { children: React.ReactNode; logo?: React.ReactNode; backgroundImage?: string; backgroundAlt?: string; } declare const AuthLayout: React.ForwardRefExoticComponent<AuthLayoutProps & React.RefAttributes<HTMLDivElement>>; export { AuthLayout }; //# sourceMappingURL=auth-layout.d.ts.map