type BaseAuthProps = { /** * Application version to show. */ version: string; /** * Application name to show. */ name: string; /** * Copy to show. */ copy?: string; /** * Indicates top left logo to display in the login page. */ logo?: React.ReactNode; /** * Background image to show. * * @see AuthBackground per maggiori informazioni. * @example * // Esempio di Background personalizzato: * const MyBackground = () => ( * * * * * * ) */ background: React.ReactNode | React.ElementType | any; }; export type { BaseAuthProps };