Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-19 13:20:36 +02:00
parent 8891721b89
commit 916a4a7242
47 changed files with 8 additions and 2802 deletions

View file

@ -1,22 +0,0 @@
package com.tangem.features.onramp.component
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.models.wallet.UserWalletId
/**
* Swap select tokens component
*
[REDACTED_AUTHOR]
*/
interface SwapSelectTokensComponent : ComposableContentComponent {
interface Factory : ComponentFactory<Params, SwapSelectTokensComponent>
/**
* Params
*
* @property userWalletId user wallet id
*/
data class Params(val userWalletId: UserWalletId)
}