mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
17 lines
348 B
QML
17 lines
348 B
QML
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Controls.Styles 1.1
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import UM 1.0 as UM
|
|
|
|
Button {
|
|
id: base;
|
|
|
|
Layout.preferredHeight: UM.Theme.sizes.section.height;
|
|
Layout.preferredWidth: UM.Theme.sizes.section.width;
|
|
|
|
property variant color;
|
|
|
|
style: UM.Theme.styles.sidebar_category;
|
|
}
|