UNPKG

@hhgtech/hhg-components

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