13 lines
209 B
QML
13 lines
209 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
required property string label
|
|
spacing: Dimensions.s
|
|
|
|
Label {
|
|
text: label
|
|
font: Typography.body
|
|
}
|
|
} |