mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
28654e0187
fixes #10637
15 lines
511 B
QML
15 lines
511 B
QML
import QtQuick 2.15
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import utils 1.0
|
|
|
|
ShowcaseDelegate {
|
|
title: !!showcaseObj && !!showcaseObj.name ? showcaseObj.name : ""
|
|
secondaryTitle: !!showcaseObj && !!showcaseObj.address ? showcaseObj.address : ""
|
|
hasEmoji: !!showcaseObj && !!showcaseObj.emoji
|
|
hasIcon: !hasEmoji
|
|
icon.name: hasEmoji ? showcaseObj.emoji : "filled-account"
|
|
icon.color: !!showcaseObj && showcaseObj.colorId ? Utils.getColorForId(showcaseObj.colorId) : Theme.palette.primaryColor3
|
|
}
|