'use client'; import { Plus, Settings, RefreshCw, Sparkles } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'; interface PluginsHeaderProps { onRefresh: () => void; enabledCount: number; totalCount: number; } export function PluginsHeader({ onRefresh, enabledCount, totalCount }: PluginsHeaderProps) { return (
{/* Actions */}

Plugins

Administra las extensiones de tu CMS

{/* Stats Cards */}

Plugins Activos

{enabledCount}

Total Instalados

{totalCount}

En Desarrollo

{totalCount - 1}

); }