mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
cc83098263
* feat(Communities): Refactor token holder list item to separate file Close #11858 * feat(Communities): Use contact details for community member info * feat(Communities): reuse StatusMemberListItem for member token holder * Review fixes Co-authored-by: Michał Iskierko <61889657+endulab@users.noreply.github.com> --------- Co-authored-by: Michał Iskierko <61889657+endulab@users.noreply.github.com>
22 lines
351 B
QML
22 lines
351 B
QML
|
|
import QtQuick 2.15
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Components 0.1
|
|
|
|
import utils 1.0
|
|
|
|
StatusBaseText {
|
|
id: root
|
|
|
|
horizontalAlignment: Qt.AlignRight
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
font.weight: Font.Medium
|
|
font.pixelSize: 13
|
|
|
|
color: Theme.palette.baseColor1
|
|
elide: Qt.ElideRight
|
|
}
|