mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 17:47:09 +00:00
12 lines
215 B
QML
12 lines
215 B
QML
import QtQuick
|
|
|
|
QtObject {
|
|
required property string text
|
|
property string icon
|
|
property string trailingIcon
|
|
property string activeIcon: icon
|
|
property string activeText: text
|
|
|
|
signal clicked
|
|
}
|