import Link from "next/link"; import { Pencil, Trash2, RefreshCw, Tv2 } from "lucide-react"; import { Button } from "@/components/ui/button"; import type { ChannelResponse } from "@/lib/types"; interface ChannelCardProps { channel: ChannelResponse; isGenerating: boolean; onEdit: () => void; onDelete: () => void; onGenerateSchedule: () => void; } export function ChannelCard({ channel, isGenerating, onEdit, onDelete, onGenerateSchedule, }: ChannelCardProps) { const blockCount = channel.schedule_config.blocks.length; return (
{channel.description}
)}