Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-08 12:32:41 +05:00
parent dfaf4e4e77
commit ce4df5bee6
18 changed files with 417 additions and 8 deletions

View file

@ -0,0 +1,14 @@
package com.tangem.features.nft.component
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.nft.models.NFTAsset
interface NFTAssetTraitsComponent : ComposableContentComponent {
data class Params(
val nftAsset: NFTAsset,
)
interface Factory : ComponentFactory<Params, NFTAssetTraitsComponent>
}