Updated on 2026-08-14
This commit is contained in:
parent
06f2d51e87
commit
1698771cfd
5 changed files with 119 additions and 0 deletions
|
|
@ -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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue