import { CalendarClock } from "lucide-react"; import { cn } from "@/lib/utils"; export interface ScheduleSlot { id: string; title: string; startTime: string; // "HH:MM" endTime: string; // "HH:MM" isCurrent?: boolean; } interface ScheduleOverlayProps { channelName: string; slots: ScheduleSlot[]; } export function ScheduleOverlay({ channelName, slots }: ScheduleOverlayProps) { return (
{/* Header */}
{channelName}
{/* Slots */}
); } export type { ScheduleOverlayProps };