import QtQuick 2.13 import "../aCommon" import "../" Item { id: root height: 38 width: 400 property bool isChecked: false property string title: "check me pouya!" Row { anchors.fill: parent Rectangle { anchors.verticalCenter: parent.verticalCenter height: 24 width: 24 radius: Setting.mediumRadius color: "transparent" border.width: 1 border.color: Colors.tertiaryEnable } Text { leftPadding: 13 height: parent.height verticalAlignment: Text.AlignVCenter color: Colors.tertiaryEnable text: root.title font: Fonts.h5 } } }