UNPKG

@conduction/components

Version:

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

15 lines (14 loc) 394 B
/// <reference types="react" /> interface DetailsCardProps { title: string; introduction?: string; link: { href: string; label: string; }; tags?: string[]; subHeader?: string; layoutClassName?: string; } export declare const DetailsCard: ({ title, subHeader, introduction, link, tags, layoutClassName, }: DetailsCardProps) => JSX.Element; export {};