// Qt
import QtQuick 2.15

//  Qml imports
import "qrc:/globals"

Row { id: _root
    property string color   : Colors.offWhite
    property string text    : ""
    spacing: 10

    Rectangle {
        anchors.verticalCenter: _root.verticalCenter
        height  : 10
        width   : height
        radius  : height
        color   : _root.color
    }

    Text {
        color           : _root.color
        text            : _root.text
        font.pixelSize  : Fonts.fontPixelDialogText
        font.weight     : Font.Medium
    }
}
