shift-shell/components/mobileshell/qml/navigationpanel/NavigationPanelAction.qml
2024-07-26 23:47:44 -04:00

16 lines
296 B
QML

/*
* 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
property string iconSource
property real iconSizeFactor
signal triggered()
}