Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-29 14:20:14 +04:00
parent 06f2d51e87
commit 1698771cfd
5 changed files with 119 additions and 0 deletions

View file

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