UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 424 B
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 };