UNPKG

@conduction/components

Version:

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

15 lines (14 loc) 421 B
/// <reference types="react" /> interface ImageAndDetailsCardProps { title: string; image: JSX.Element; introduction: string; link: { href: string; label: string; }; subHeader?: string; layoutClassName?: string; } export declare const ImageAndDetailsCard: ({ image, title, subHeader, introduction, link, layoutClassName, }: ImageAndDetailsCardProps) => JSX.Element; export {};