UNPKG

@hhgtech/hhg-components

Version:
17 lines (16 loc) 590 B
import React from 'react'; type ArticleExpertProps = { isMobile: boolean; avatarImg: JSX.Element; name: React.ReactNode; link?: string; size: 'lg' | 'md' | 'sm'; specialty: string; handleClick: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void; isBookmarked: boolean; dataEventCategoryForBookmark?: string; dataEventActionForBookmark?: string; dataEventLabelForBookmark?: string; }; export declare const CardExpert: ({ isMobile, avatarImg, name, link, size, specialty, }: ArticleExpertProps) => React.JSX.Element; export {};