@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 416 B
TypeScript
import React from 'react';
import { ImageWrapV2Props } from "../../atoms";
export type CertificateItemProps = {
image: string;
title: string;
description: string;
className?: string;
imageProps?: Partial<ImageWrapV2Props>;
};
declare const CertificateItem: ({ image, description, title, className, imageProps, }: CertificateItemProps) => React.JSX.Element;
export { CertificateItem };