@hhgtech/hhg-components
Version:
Hello Health Group common components
17 lines (16 loc) • 598 B
TypeScript
import React, { PropsWithChildren, ReactNode } from 'react';
type TCardItemProps = {
title: string;
logo: string;
href: string;
LinkComponent?: React.ElementType<{
href: string;
children?: ReactNode;
}>;
defaultImage?: string;
description?: ReactNode | string;
contentInfo?: ReactNode;
className?: string;
};
export declare function CardListItem({ title, href, description, logo, defaultImage, LinkComponent, children, contentInfo, className, }: PropsWithChildren<TCardItemProps>): React.JSX.Element;
export default CardListItem;