UNPKG

@codeworker.br/govbr-tw-react

Version:

Biblioteca de componentes React usando Tailwind CSS que implementa o Padrão Digital de Governo.

18 lines (17 loc) 475 B
import { ComponentProps, FC } from "react"; interface MultiComboBoxProps extends ComponentProps<"div"> { options: { label: string; value: string; }[]; name?: string; pageSize?: number; selectAllLabel?: string[]; onChange?: any; values?: any[]; noOptionFoundLabel?: string; sortOrder?: "asc" | "desc" | "none"; filterPlaceholder?: string; } declare const MultiComboBox: FC<MultiComboBoxProps>; export { MultiComboBox };