mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
20 lines
504 B
QML
20 lines
504 B
QML
import "root:/modules/common"
|
|
import "root:/modules/common/widgets/"
|
|
import "root:/modules/common/functions/color_utils.js" as ColorUtils
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
|
|
RippleButton {
|
|
id: button
|
|
|
|
required default property Item content
|
|
property bool extraActiveCondition: false
|
|
|
|
implicitHeight: Math.max(content.implicitHeight, 26, content.implicitHeight)
|
|
implicitWidth: implicitHeight
|
|
contentItem: content
|
|
|
|
}
|