UNPKG

@defikitdotnet/education-module-ai

Version:
13 lines (12 loc) 304 B
import { FC } from "react"; import { Course } from "../models/Course"; interface CourseCardProps { course: Course; className?: string; isEnrolled?: boolean; progress?: number; href?: string; onClick?: () => void; } export declare const CourseCard: FC<CourseCardProps>; export {};