C

Qt Quick Ultralite Motorcycle Cluster Demo

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
import QtQuick 2.0

KeyBase {
    id: root
    property alias symbol: letter.text
    property alias textColor: letter.color

    Text {
        id: letter
        anchors.centerIn: root
        anchors.verticalCenterOffset: -3
        font.family: "Barlow-mono";
        font.pixelSize: 20
    }
}