2025-10-11 17:55:56 +02:00
|
|
|
import QtQuick 6.8
|
2025-10-12 03:10:14 +02:00
|
|
|
import QtQuick.Controls 6.8
|
|
|
|
|
import QtQuick.Controls.Basic 6.8
|
2025-10-11 17:55:56 +02:00
|
|
|
|
2025-10-12 03:10:14 +02:00
|
|
|
Label {
|
2025-10-11 17:55:56 +02:00
|
|
|
property string heading: "base"
|
|
|
|
|
|
2025-10-14 10:06:06 +02:00
|
|
|
color: Colors.text
|
2025-10-11 17:55:56 +02:00
|
|
|
font.family: Colors.fontFamily
|
|
|
|
|
font.pixelSize: Colors.fontSize[heading]
|
|
|
|
|
}
|