import QtQuick 2.13 import "../" import "../aCommon" Item { width: 16 height: 16 property string iconPath: "" property bool isEnable: true Rectangle { anchors.fill: parent color: Colors.black border.width: 1 border.color: Colors.tertiaryEnable radius: Setting.smallRadius UImage { anchors.fill: parent color: Colors.tertiaryEnable source: "qrc:/SepantaUiKit/icons/person.svg" } } }