import { BoxProps } from '@dodoex/components'; import React from 'react'; /** * * @param param0 * @returns * @deprecated */ export default function TokenLogoSimple({ address, url, symbol, width, height, marginRight, zIndex, sx, onLoadedLogoUrl, }: { address: string | undefined; url: string; symbol?: string; width: number; height: number; marginRight?: number; zIndex?: number; sx?: BoxProps['sx']; onLoadedLogoUrl?: (isLoaded: boolean) => void; }): React.JSX.Element;