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