UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 416 B
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 };