// src/components/admin/plans/PlanManager/components/EmptyState.tsx import Link from 'next/link'; import { Button } from '@/components/ui/button'; import { Package, Plus } from 'lucide-react'; interface EmptyStateProps { title?: string; description?: string; showCreateButton?: boolean; } export function EmptyState({ title = "No hay planes creados", description = "Comienza creando tu primer plan turĂstico", showCreateButton = true }: EmptyStateProps) { return (
{description}
{showCreateButton && (