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 source: img.source

    Image {
        id: img
        anchors.centerIn: root
    }
}