16 lines
412 B
QML
16 lines
412 B
QML
import QtQuick
|
|
import ".."
|
|
|
|
Text {
|
|
id: root
|
|
property bool animateChange: false
|
|
|
|
renderType: Text.NativeRendering
|
|
verticalAlignment: Text.AlignVCenter
|
|
font {
|
|
hintingPreference: Font.PreferFullHinting
|
|
family: Appearance?.font.family.main ?? "sans-serif"
|
|
pixelSize: Appearance?.font.pixelSize.small ?? 15
|
|
}
|
|
color: Appearance?.m3colors.m3onBackground ?? "white"
|
|
}
|