/*!
 *
 * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved.
 * \copyright
 * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN
 * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER.
 *
 * \file    Label.qml
 * \author  (last)      Behrouz NematiPour
 * \date    (last)      20-May-2021
 * \author  (original)  Behrouz NematiPour
 * \date    (original)  20-May-2021
 *
 */

// Qt
import QtQuick 2.12

// Project
//  Qml imports
import "qrc:/globals"

/*!
 * \brief   The simple standard Text to be used in combination with other components.
 */
Text { id           : _root
    property int labelWidth  : 275

    width           : labelWidth
    text            : ""
    color           : Colors.textMain
    font.pixelSize  : Fonts.fontPixelTextRectExtra
}
