@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 424 B
TypeScript
import React from 'react';
import { UserProfileMenuCard, UserProfileTheme } from "../types";
export type NavigationCardProps = {
type: UserProfileMenuCard;
themeName: UserProfileTheme;
onClick?: (type: UserProfileMenuCard) => void;
className?: string;
};
declare const NavigationCard: ({ type, themeName, className, onClick, }: NavigationCardProps) => React.JSX.Element;
export { NavigationCard };