Warning, /maui/mauikit/src/controls.5/CloseButton.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick 2.15
0002 import QtQuick.Controls 2.15
0003
0004 import org.mauikit.controls 1.3 as Maui
0005
0006 ToolButton
0007 {
0008 id: control
0009
0010 icon.source: "qrc:/assets/close.svg"
0011 icon.color: control.hovered || control.containsPress ? control.Maui.Theme.negativeTextColor : control.Maui.Theme.textColor
0012
0013 background: Rectangle
0014 {
0015 radius: Maui.Style.radiusV
0016 color: control.hovered || control.containsPress ? Maui.Theme.negativeBackgroundColor : "transparent"
0017
0018 }
0019 }