/*!
 *
 * Copyright (c) 2019-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    TitleText.qml
 * \author  (last)      Behrouz NematiPour
 * \date    (last)      22-Mar-2020
 * \author  (original)  Behrouz NematiPour
 * \date    (original)  21-Oct-2019
 *
 */

// Qt
import QtQuick 2.12

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

/*!
 * \brief   The page title text
 * which is going to be used as default title of pages
 */
Text { id: _root
    bottomPadding: Variables.bottomPaddingTitle
    horizontalAlignment: Text.AlignHCenter
    verticalAlignment  : Text.AlignVCenter
    color: Colors.textMain
    font.pixelSize: Fonts.fontPixelTitle
}
