import React, { useState } from 'react'; import { Search, X, Check, ChevronDown } from 'lucide-react'; export interface SelectOption { value: string; label: string; hint?: string } // Dropdown genérico que abre um modal com busca — substitui setBusca(e.target.value)} placeholder="Buscar…" className="w-full pl-9 pr-3 py-2.5 rounded-xl border border-gray-200 text-sm outline-none focus:border-teal-400" />
{filtrados.length === 0 ? (

Nada encontrado.

) : filtrados.map(o => ( ))}
)} ); };