import { Search } from 'lucide-react'; import { Button } from './Button'; /** Shared explicit-search actions for both portals. Editing filters never submits them. */ export function QueryButtons({ onQuery, onReset }: { onQuery: () => void; onReset: () => void }) { return
; }