Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-29 12:14:56 +04:00
parent 42b8de7909
commit 06f2d51e87
8 changed files with 130 additions and 8 deletions

View file

@ -14,6 +14,9 @@ dependencies {
implementation(projects.core.decompose)
implementation(projects.core.ui)
/* Project - Domain */
implementation(projects.domain.wallets.models)
/* Compose */
implementation(deps.compose.runtime)
}

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
/**
* Buy crypto component
*
[REDACTED_AUTHOR]
*/
interface BuyCryptoComponent : ComposableContentComponent {
interface Factory : ComponentFactory<Params, BuyCryptoComponent>
/**
* Params
*
* @property userWalletId user wallet id
*/
data class Params(val userWalletId: UserWalletId)
}