UNPKG

conduction-components

Version:

React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)

14 lines (13 loc) 327 B
import * as React from "react"; interface HorizontalImageCardProps { iconOrImage: JSX.Element; title: string; link: { label: string; href: string; }; layoutClassName?: string; external?: boolean; } export declare const HorizontalImageCard: React.FC<HorizontalImageCardProps>; export {};