status-desktop/ui/app/AppLayouts/Profile/controls/WalletNetworkDelegate.qml

22 lines
482 B
QML
Raw Normal View History

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