You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
500 B

10 months ago
import QtQuick 2.13
10 months ago
import "../"
import "../aCommon"
10 months ago
Item {
10 months ago
width: 16
height: 16
property string iconPath: ""
property bool isEnable: true
10 months ago
10 months ago
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"
}
}
10 months ago
}