UNPKG

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.

12 lines 474 B
/// <reference types="react" /> export type ICheckType = Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> & { size?: "small" | "default"; label?: string; messege?: string; disabled?: boolean; loading?: boolean; checked?: boolean; onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void; }; export declare const Toogle: (props: ICheckType) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=index.d.ts.map