mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-08 08:19:26 -05:00
20 lines
399 B
QML
20 lines
399 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
|
|
StyledButton {
|
|
id: root
|
|
|
|
property alias implicitSize: root.implicitHeight
|
|
implicitWidth: implicitHeight
|
|
property alias iconSize: icon.iconSize
|
|
|
|
contentItem: Item {
|
|
MaterialSymbol {
|
|
id: icon
|
|
anchors.centerIn: parent
|
|
color: root.colForeground
|
|
text: root.text
|
|
}
|
|
}
|
|
}
|