import React from 'react' import { Star, Trash2, ChevronRight } from 'lucide-react' interface FavoriteItem { id: string name: string } interface SidebarProps { favorites: FavoriteItem[] onSearch: (id: string, months: number) => void onToggleFavorite: (id: string) => void onViewFavorites: () => void months: number } export const Sidebar: React.FC = ({ favorites, onSearch, onToggleFavorite, onViewFavorites, months, }) => ( )