12 lines
232 B
QML
12 lines
232 B
QML
import QtQuick 6.8
|
|
import QtQuick.Controls 6.8
|
|
import QtQuick.Controls.Basic 6.8
|
|
|
|
Label {
|
|
property string heading: "base"
|
|
|
|
color: Colors.text
|
|
font.family: Colors.fontFamily
|
|
font.pixelSize: Colors.fontSize[heading]
|
|
}
|