@fchh/fcos-suite-ui
Version:
Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).
14 lines (13 loc) • 447 B
TypeScript
export interface RepoCardProps {
project: string;
projectTitle: string;
description: string;
className?: string;
target: string;
platform: "gitlab" | "github";
stats?: Array<{
value: string | number;
icon: React.ReactElement;
}>;
}
export declare function RepoCard({ project, projectTitle, description, className, platform, stats, target, }: RepoCardProps): import("react/jsx-runtime").JSX.Element;