shift-shell/components/mobileshell/qml/navigationpanel/NavigationPanelAction.qml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
292 B
QML
Raw Permalink Normal View History

2021-10-31 04:11:10 +00:00
/*
* SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick 2.15
QtObject {
property bool enabled
property bool visible: true
2021-10-31 04:11:10 +00:00
property string iconSource
property real shrinkSize
2024-07-27 03:47:44 +00:00
2021-10-31 04:11:10 +00:00
signal triggered()
}