UNPKG

prosperita-dumbo-react

Version:

Uma biblioteca de componentes React moderna e acessível, desenvolvida para aplicações financeiras com design system consistente.

30 lines 926 B
import { InputHTMLAttributes, ReactNode } from "react"; type OptionType = { label: string; value: string; }; export type DropdownProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & { options: OptionType[]; placeholder?: string; show?: boolean; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; size: "large" | "small" | "medium"; kind: "default" | "fluid"; borderlastnone?: boolean; error?: boolean; warning?: boolean; disabled?: boolean; readOnly?: boolean; label?: string; message?: string; forFilter?: boolean; loading?: boolean; noRadius?: boolean; icon?: ReactNode; borderNone?: boolean; clearFiles?: boolean; paddingDrop?: string; }; export declare const Dropdown: (props: DropdownProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map