prosperita-dumbo-react
Version:
**Dumbo React** é uma biblioteca de componentes React que facilita a manipulação de propriedades em seus componentes. Ela fornece uma forma simples e eficiente de gerenciar e manipular props, tornando seu código mais limpo e fácil de manter.
17 lines • 709 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;
};
export declare const Search: (props: InputSearchProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map