import QtQuick 2.13 import "../" import "../aCommon" Item { height: 38 width: 400 property alias text: idText.text Rectangle { id: idBackGround anchors.fill: parent radius: Setting.mediumRadius color: "transparent" border.color: Colors.tertiaryEnable border.width: 1 clip: true TextInput { id: idText anchors.leftMargin: 12 anchors.rightMargin: 12 anchors.fill: parent font: Fonts.h5 color: Colors.tertiaryEnable verticalAlignment: Text.AlignVCenter horizontalAlignment: Text.AlignVCenter } // MouseArea { // anchors.fill: parent // } } }