mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
14 lines
235 B
QML
14 lines
235 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
RoundButton {
|
|
z: 1
|
|
anchors.right: parent.right
|
|
anchors.margins: 5
|
|
icon.color: "#eee"
|
|
icon.width: 28
|
|
width: 38
|
|
height: width
|
|
radius: width / 2
|
|
palette.button: "#555"
|
|
}
|