import { ChevronDownIcon } from '@heroicons/react/solid' import Image from 'next/image' import mangoStore from '../store/state' type TokenSelectProps = { token: string showTokenList: (x: any) => void type: 'input' | 'output' } const TokenSelect = ({ token, showTokenList, type }: TokenSelectProps) => { const group = mangoStore((s) => s.group) if (!group) return null return ( <>