Update CalendarCourseCell.tsx

This commit is contained in:
Abhinav Chadaga
2024-02-17 14:31:34 -06:00
parent bba067f591
commit c5968f3f11

View File

@@ -6,10 +6,10 @@ import WaitlistIcon from '~icons/material-symbols/timelapse';
import CancelledIcon from '~icons/material-symbols/warning'; import CancelledIcon from '~icons/material-symbols/warning';
import Text from '../Text/Text'; import Text from '../Text/Text';
/** The Course that the meeting is for. */ export interface CalendarCourseCellProps {
course: Course; courseDeptAndInstr: string;
/* index into course meeting array to display */ timeAndLocation?: string;
meetingIdx?: number; status: Status;
colors: CourseColors; colors: CourseColors;
} }