summaryrefslogtreecommitdiff
path: root/Label.qml
blob: c2038e0e2566d6efcd40ef890e2f922546ef9892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.15
import QtQuick.Templates 2.15
import Bootstrap 5.3

Label {
	id: control
	font {
		family: Bootstrap.bodyFont.family
		pointSize: Bootstrap.bodyFont.pointSize
		weight: Bootstrap.bodyFont.weight
	}
	color: Bootstrap.bodyColor
	linkColor: control.palette.link
}