@hhgtech/hhg-components
Version:
Hello Health Group common components
20 lines (19 loc) • 583 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
heading: string;
medicalReview?: {
link: string;
reviewer: string;
date: string;
avatar?: string;
};
color?: string;
bannerColor?: string;
style?: CSSProperties;
className?: string;
icon?: JSX.Element;
isPregTool?: boolean;
isRevamp?: boolean;
};
declare const ToolsBannerCard: ({ className, heading, bannerColor, medicalReview, icon, style, isPregTool, isRevamp, }: Props) => React.JSX.Element;
export { ToolsBannerCard };