prosperita-dumbo-react
Version:
Uma biblioteca de componentes React moderna e acessível, desenvolvida para aplicações financeiras com design system consistente.
18 lines • 737 B
TypeScript
import { InputHTMLAttributes, ChangeEvent } from "react";
import "@fontsource/ibm-plex-sans";
export type InputSearchProps = Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & {
kind: "fluid" | "default" | "expandable";
size: "small" | "medium" | "large";
label?: string;
onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
disabled?: boolean;
readOnly?: boolean;
loading?: boolean;
onClick?: React.FormEventHandler<HTMLLabelElement>;
value?: string;
ContainedListMenu?: boolean;
expandable?: boolean;
borderTable?: boolean;
};
export declare const Search: (props: InputSearchProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map