@hhgtech/hhg-components
Version:
Hello Health Group common components
22 lines (21 loc) • 703 B
TypeScript
import React, { CSSProperties } from 'react';
import { BoxProps } from '@mantine/core';
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;
disclaimer?: string;
} & BoxProps;
declare const ToolsBannerCard: ({ className, classNames, heading, bannerColor, medicalReview, icon, style, isPregTool, isRevamp, disclaimer, styles, ...rest }: Props) => React.JSX.Element;
export { ToolsBannerCard };