@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 423 B
TypeScript
import React from 'react';
import { UserInfo } from "../../../../interfaces/types";
import { UserProfileTheme } from "../types";
export type NavHeaderProps = {
userInfo?: UserInfo;
userDisplayName?: string;
onClickMyProfileButton?: () => void;
themeName?: UserProfileTheme;
};
export declare function NavHeader({ userInfo, onClickMyProfileButton, themeName, }: NavHeaderProps): React.JSX.Element;