@hhgtech/hhg-components
Version:
Hello Health Group common components
18 lines (17 loc) • 616 B
TypeScript
import React from 'react';
type CardAuthorProps = {
avatarImg: JSX.Element;
authorName: React.ReactNode;
authorLink?: string;
editorName?: string;
editorLink?: string;
size: string;
uploadTime: string;
handleClick: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void;
isBookmarked: boolean;
dataEventCategoryForBookmark?: string;
dataEventActionForBookmark?: string;
dataEventLabelForBookmark?: string;
};
export declare const CardAuthor: ({ avatarImg, authorName, authorLink, uploadTime, size, }: CardAuthorProps) => React.JSX.Element;
export {};