status-desktop/ui/app/AppLayouts/Profile/controls/WalletNetworkDelegate.qml
Khushboo Mehta 8d3fad8342 feat(@desktop/wallet): Multichain QR Code
Implements the new Recieve Modal with multichain functionality

closes #5735, #6057
2022-06-17 01:27:35 +05:30

22 lines
482 B
QML

import utils 1.0
import StatusQ.Components 0.1
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
StatusListItem {
property var network
title: network.chainName
image.source: Style.png(network.iconUrl)
width: parent.width
leftPadding: Style.current.padding
rightPadding: Style.current.padding
components: [
StatusIcon {
icon: "chevron-down"
rotation: 270
color: Theme.palette.baseColor1
}
]
}