@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 494 B
TypeScript
import React from 'react';
import { HEALTH_TOOL_NAME } from "../../../interfaces/healthTools";
import { ThumbnailType } from "./types";
export type Props = {
value: HEALTH_TOOL_NAME;
isRiskScreener?: boolean;
heading?: string;
description?: string;
thumbnail?: string | ThumbnailType;
btnLabel?: string;
dataEventAction?: string;
hideDescOnMobile?: boolean;
};
declare const ToolBanner: (props: Props) => React.JSX.Element;
export { ToolBanner };