conduction-components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
20 lines (19 loc) • 440 B
TypeScript
import * as React from "react";
export interface RichContentCardProps {
link: {
label: string;
href: string;
};
labelsWithIcon: {
label: string;
icon: JSX.Element;
}[];
tags: string[];
contentLinks?: {
title: string;
subTitle: string;
href: string;
}[];
linkIsExternal?: boolean;
}
export declare const RichContentCard: React.FC<RichContentCardProps>;