UNPKG

@conduction/components

Version:

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

9 lines (8 loc) 255 B
/// <reference types="react" /> interface InfoCardProps { title: string; content: JSX.Element | string; layoutClassName?: string; } export declare const InfoCard: ({ title, content, layoutClassName }: InfoCardProps) => JSX.Element; export {};