import { QuestionMarkCircleIcon } from '@heroicons/react/20/solid' import Image from 'next/image' const MarketLogos = ({ baseURI, quoteURI, }: { baseURI: string quoteURI: string }) => { return (
{baseURI ? ( ) : ( )}
{quoteURI ? ( ) : ( )}
) } export default MarketLogos