'use client'; import { Input } from '@/components/ui/input'; import { Button } from '@/components/ui/button'; import { Search, Plus, Trash2 } from 'lucide-react'; import type { DepartmentToolbarProps } from './types'; /** * 검색 + 추가/삭제 버튼 툴바 */ export function DepartmentToolbar({ totalCount, selectedCount, searchQuery, onSearchChange, onAdd, onDelete }: DepartmentToolbarProps) { return (