import { Search as SearchIcon } from "lucide-react"; interface EmptyStateProps { hasSearched: boolean; isLoading: boolean; } export function EmptyState({ hasSearched, isLoading }: EmptyStateProps) { // Don't show empty state while loading or if search has been performed if (isLoading || hasSearched) { return null; } return (
Use the search bar above to find music, artists, and albums