import { ArrowTopRightOnSquareIcon } from '@heroicons/react/20/solid' import { CLUSTER } from '@store/mangoStore' type ExplorerLinkProps = { address: string anchorData?: boolean className?: string } const ExplorerLink = ({ address, anchorData = false, className = '', }: ExplorerLinkProps) => { return ( {address} ) } export default ExplorerLink