UNPKG

@suiware/kit

Version:

Opinionated React components and hooks for building Sui dApps.

14 lines (11 loc) 502 B
import * as react_jsx_runtime from 'react/jsx-runtime'; /** * The `Balance` component is used for displaying SUI balance for current user address on the currently active network. * * The balance is updated automatically with 3 second interval. * Please note the component doesn't display anything if user wallet is not connected. * * The component is using the useBalance hook to fetch the balance. */ declare const Balance: () => react_jsx_runtime.JSX.Element; export { Balance as default };