@conduction/components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
14 lines (13 loc) • 392 B
TypeScript
/// <reference types="react" />
interface HorizontalImageCardProps {
iconOrImage: JSX.Element;
title: string;
link: {
label: string;
href: string;
};
layoutClassName?: string;
external?: boolean;
}
export declare const HorizontalImageCard: ({ title, layoutClassName, external, link, iconOrImage, }: HorizontalImageCardProps) => JSX.Element;
export {};