UNPKG

conduction-components

Version:

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

15 lines (14 loc) 347 B
import * as React from "react"; interface ImageAndDetailsCardProps { title: string; image: JSX.Element; introduction: string; link: { href: string; label: string; }; subHeader?: string; layoutClassName?: string; } export declare const ImageAndDetailsCard: React.FC<ImageAndDetailsCardProps>; export {};