'use client'; import { cn, pressable, text } from '../../styles/theme'; import type { TokenChipProps } from '../types'; import { TokenImage } from './TokenImage'; /** * Small button that displays a given token symbol and image. * * WARNING: This component is under development and * may change in the next few weeks. */ export function TokenChip({ token, onClick, className, isPressable = true, }: TokenChipProps) { return ( ); }