'use client'; import { Users, Filter, UserPlus, Search } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; interface UsersHeaderProps { searchTerm: string; onSearchChange: (value: string) => void; } export function UsersHeader({ searchTerm, onSearchChange }: UsersHeaderProps) { return (
{/* Top Bar */}

Gestión de Usuarios

Administra usuarios y permisos

{/* Search Bar */}
onSearchChange(e.target.value)} className="pl-12 pr-ios py-4 ios-glass border-white/20 text-black ios-body rounded-ios-xl focus:ring-2 focus:ring-ios-primary/50 focus:ios-glass-secondary transition-all duration-300 placeholder:text-ios-gray-5 w-full shadow-ios font-sf-text bg-white/50" />
); }