@suiware/kit
Version:
Opinionated React components and hooks for building Sui dApps.
15 lines (12 loc) • 369 B
text/typescript
import { SuinsClient } from '@mysten/suins';
import { FC } from 'react';
interface IAddressInput {
value: string;
onChange: (value: string) => void;
placeholder?: string;
className?: string;
disabled?: boolean;
suinsClient?: SuinsClient;
}
declare const AddressInput: FC<IAddressInput>;
export { type IAddressInput, AddressInput as default };