xylabs/sdk-react

View on GitHub
packages/crypto/src/components/EthAccount/EthAccountProps.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { EthAddress } from '@xylabs/eth-address'

interface EthAccountProps {
  address?: EthAddress | null
  addressLength?: 'auto' | 'short' | 'long'
  fontFamily?: string
  full?: boolean
  icon?: boolean
  iconOnly?: boolean
  iconSize?: number
  removeMargin?: boolean
  shortenedLength?: number
  toEtherScan?: boolean
}

export type { EthAccountProps }