react-ez-ui
Version:
A customizable component library for React that does not rely on predefined UI styles, allowing complete control over the design and content of the components.
23 lines (19 loc) • 573 B
TypeScript
import React from 'react';
interface LoadingButtonProps {
wrapperClassName?: string;
onClick: () => Promise<any>;
loadingText?: React.ReactNode;
loadingClassName?: string;
children: React.ReactNode;
disabled?: boolean;
disabledClassName?: string;
debounceTime?: number;
}
declare const LoadingButton: React.FC<LoadingButtonProps>;
interface PickerProps {
children: React.ReactNode;
content: (cb: () => void) => React.ReactNode;
zIndex?: number;
}
declare const Picker: React.FC<PickerProps>;
export { LoadingButton, Picker };