12 lines
233 B
QML
12 lines
233 B
QML
import qs.widgets
|
|
import Quickshell
|
|
|
|
StyledButton {
|
|
id: root
|
|
property QsMenuEntry menuEntry
|
|
onClicked: menuEntry.triggered()
|
|
content: StyledText {
|
|
font.pixelSize: 14
|
|
text: root.menuEntry.text
|
|
}
|
|
}
|