@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 456 B
TypeScript
import React from 'react';
import { DataTrackingTypeHTMLElement } from "../../../types";
export type VoucherItemProps = {
image: string;
title: string;
description: string;
onClick?: () => void;
className?: string;
dataTracking?: DataTrackingTypeHTMLElement;
};
declare const VoucherItem: ({ image, title, description, onClick, className, dataTracking, }: VoucherItemProps) => React.JSX.Element;
export { VoucherItem };