@conduction/components
Version:
React (Gatsby) components used within the Conduction Skeleton Application (and its implementations)
17 lines (16 loc) • 501 B
TypeScript
/// <reference types="react" />
import { IconDefinition } from "@fortawesome/free-solid-svg-icons";
interface DownloadCardProps {
label: string;
size: string;
type: string;
labelTooltip?: {
id: string;
tooltip: string;
};
icon?: IconDefinition;
layoutClassName?: string;
handleClick: () => any;
}
export declare const DownloadCard: ({ icon, label, size, type, labelTooltip, layoutClassName, handleClick, }: DownloadCardProps) => JSX.Element;
export {};