import { Calendar, Clock, Tv, ExternalLink, Play } from 'lucide-react'; import { decodeHtmlEntities, formatFullDate, formatTime } from './utils'; /** * 예능 일정 섹션 컴포넌트 */ function VarietySection({ schedule }) { const members = schedule.members || []; const isFullGroup = members.length === 5; const hasThumbnail = !!schedule.thumbnailUrl; const hasReplayUrl = !!schedule.replayUrl; const isYoutubeReplay = hasReplayUrl && /youtu\.?be/i.test(schedule.replayUrl); const categoryColor = schedule.category?.color || '#06b6d4'; return (