/*!
 * 
 * Copyright (c) 2019-2020 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 ImageLogoD.qml
 * \author (last) Behrouz NematiPour
 * \date (last) 18-May-2020
 * \author (original) Behrouz NematiPour
 * \date (original) 18-May-2020
 * 
 */

// Qt
import QtQuick 2.12

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

/*!
 * \brief   Denali project simple logo (No 'Diality')
 */
Item { id : _root
    height : Variables.headerHeight
    anchors {
        top     : parent.top
        left    : parent.left
        right   : parent.right
    }

    Image { id: _image
        anchors.centerIn: parent
        width : Variables.logoWidth
        height: Variables.logoHeight
        source: "qrc:/images/iLogoD"
    }
}
