import { TOKEN_LIST_SURFACE_LABELS, type TokenListSurface } from '@/services/api/tokenListSurfaces' interface TokenListSurfaceNoteProps { surface?: TokenListSurface className?: string } export default function TokenListSurfaceNote({ surface = 'extended', className = 'text-sm text-gray-600 dark:text-gray-400', }: TokenListSurfaceNoteProps) { return
{TOKEN_LIST_SURFACE_LABELS[surface]}
}