14 lines
277 B
QML
14 lines
277 B
QML
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12 as QuickControls
|
|
|
|
import Utils 1.0
|
|
|
|
QuickControls.Label {
|
|
id: control
|
|
font.pixelSize: Ui.scale(12)
|
|
font.family: "Roboto"
|
|
font.weight: Font.Normal
|
|
color: Palette.secondaryLabelColor
|
|
wrapMode : Text.Wrap
|
|
}
|