UNPKG

@hhgtech/hhg-components

Version:
18 lines (17 loc) 684 B
import React, { CSSProperties } from 'react'; import { LOCALE, SiteType, UserInfo } from "../../../interfaces/types"; export type Props = { userInfo?: UserInfo; siteType: SiteType; onLoginClick?: (e: React.MouseEvent) => void; currentUrl?: string; isMinifyLogin?: boolean; onLogout?: () => void; style?: CSSProperties; isLoading?: boolean; locale: LOCALE; enableAppIntroPage?: boolean; isMobile: boolean; className?: string; }; export declare const NavigationProfileButton: ({ userInfo, siteType, onLoginClick, currentUrl, isMinifyLogin, onLogout, style, isLoading, isMobile, className, }: Props) => React.JSX.Element;