mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-24 21:39:24 +00:00
11 lines
185 B
QML
11 lines
185 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
StatusAction {
|
|
property bool muted: false
|
|
|
|
text: muted ? qsTr("Unmute Chat") : qsTr("Mute Chat")
|
|
icon.name: "notification"
|
|
}
|