Lukáš Tinkl 7a407662e2 feat: New Profile Modal
Fixes: #7360
2022-10-17 12:05:54 +02:00

11 lines
187 B
QML

import QtQuick 2.14
import StatusQ.Popups 0.1
StatusMenuItem {
property bool muted: false
text: muted ? qsTr("Unmute Chat") : qsTr("Mute Chat")
icon.name: "notification"
}