UNPKG

@suiware/kit

Version:

Opinionated React components and hooks for building Sui dApps.

13 lines (10 loc) 288 B
import { FC } from 'react'; interface IAmountInput { value: string; onChange: (value: string) => void; placeholder?: string; className?: string; disabled?: boolean; } declare const AmountInput: FC<IAmountInput>; export { type IAmountInput, AmountInput as default };