CaptionLabel.qml 258 Bytes
import QtQuick
import QtQuick.Controls.Basic
import "../" as App

Label {
    font.family: App.Theme.fontFamily
    font.pointSize: App.Theme.fontBase
    font.weight: Font.DemiBold
    color: App.Theme.textPrimary
    verticalAlignment: Text.AlignVCenter
}