@htsoft/aiza-react-auction
Version:
ReactJS components for NFT auctions
14 lines (13 loc) • 452 B
TypeScript
/// <reference types="react" />
declare type EthAmountInputProps = {
hasMinPrecision?: boolean;
minValue?: string;
inputProps?: any;
label: string;
};
export declare const useEthAmountInput: ({ hasMinPrecision, minValue, inputProps, label, }: EthAmountInputProps) => {
input: JSX.Element;
ethValue: string | undefined;
setEthValue: import("react").Dispatch<import("react").SetStateAction<string | undefined>>;
};
export {};