UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

11 lines (10 loc) 294 B
import React from "react"; export interface ScheduleCardProps { time: string; title: string; subtitle?: string; status?: "in-progress" | "upcoming" | "done"; onClick?: () => void; icon?: React.ReactNode; } export declare const ScheduleCard: React.FC<ScheduleCardProps>;