@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 369 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
title?: string;
url: string;
image?: string;
logo?: string;
className?: string;
noRefetch?: boolean;
style?: CSSProperties;
};
declare const CardLink: ({ title, url, image, logo, className, style, noRefetch, }: Props) => React.JSX.Element;
export { CardLink };