import FormatCrypto from './FormatCrypto' import React, { FC, ComponentProps } from 'react' import CryptoCurrencyIcon from './CryptoCurrencyIcon' import { zeroAddress } from 'viem' type FormatCryptoCurrencyProps = { logoHeight?: number borderRadius?: string; address?: string } type Props = ComponentProps & FormatCryptoCurrencyProps const FormatCryptoCurrency: FC = ({ amount, address = zeroAddress, maximumFractionDigits, borderRadius = '0%', logoHeight = 8, textStyle, css, decimals, }) => { return ( ) } export default FormatCryptoCurrency