mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
15 lines
338 B
QML
15 lines
338 B
QML
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import QtQuick
|
|
|
|
RippleButton {
|
|
id: button
|
|
|
|
required default property Item content
|
|
property bool extraActiveCondition: false
|
|
|
|
implicitHeight: Math.max(content.implicitHeight, 26, content.implicitHeight)
|
|
implicitWidth: implicitHeight
|
|
contentItem: content
|
|
|
|
}
|