Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-30 18:22:42 +05:00
parent c55274f40f
commit efcb0dea79
20 changed files with 477 additions and 17 deletions

View file

@ -0,0 +1,13 @@
package com.tangem.feature.walletsettings.component
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableBottomSheetComponent
interface NetworksAvailableForNotificationsComponent : ComposableBottomSheetComponent {
data class Params(
val onDismiss: () -> Unit,
)
interface Factory : ComponentFactory<Params, NetworksAvailableForNotificationsComponent>
}