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.
23 lines
500 B
23 lines
500 B
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"
|
|
}
|
|
}
|
|
}
|
|
|