import QtQuick import QtQuick.Layouts 1.15 Rectangle { id: annotation_text width: 272 height: 56 color: "#ffffff" radius: 6 property alias noteText: note.text RowLayout { id: annotation_text_instance_RowLayout anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom anchors.rightMargin: 8 Text { id: note width: 257 color: "#000000" text: qsTr("Click here to get advanced search options.") anchors.top: parent.top anchors.bottom: parent.bottom font.letterSpacing: -0.266 font.pixelSize: 14 horizontalAlignment: Text.AlignLeft verticalAlignment: Text.AlignVCenter wrapMode: Text.Wrap Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter anchors.horizontalCenter: parent.horizontalCenter anchors.bottomMargin: -48 font.weight: Font.Normal anchors.topMargin: 8 font.family: "Inter" anchors.horizontalCenterOffset: 137 Layout.fillWidth: true } anchors.bottomMargin: 8 anchors.topMargin: 8 spacing: 10 anchors.leftMargin: 8 } } /*##^## Designer { D{i:0;uuid:"2a95ae81-784a-564a-8831-6f15d19fb37d"}D{i:2;uuid:"2ee5779d-71dd-5b0e-911b-522a86c54595"} D{i:1;uuid:"2a95ae81-784a-564a-8831-6f15d19fb37d_HORIZONTAL"} } ##^##*/