import QtQuick 2.0


Item { id: _root

    height  : 35
    width   : _infoNotificationBar.implicitWidth

    NotificationBarSmall { id: _infoNotificationBar
        color                   : "transparent"
        imageSource             : "qrc:/images/iHelp"
        imageVisible            : true
        text                    : qsTr("TAP THE STEP NUMBER TO VIEW IMAGE")
        textColor               : "#3682ED"
        imageDiameter           : 25
        imageTopMargin          : 3
        textfontWeight          : Font.DemiBold
        height                  : parent.height
        rowAnchors       {
            centerIn: undefined
            left    : parent.left
        }
    }
}
