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.
 
 
 

28 lines
645 B

import QtQuick 2.13
import QtQuick.Controls 2.13
import QtQuick.Layouts 1.2
import QtQml 2.13
import "../"
import "../aCommon"
import "../SKTextField"
Item {
Layout.fillHeight: true
Layout.preferredWidth: 150
RowLayout {
anchors.fill: parent
clip: true
Icon {
Layout.alignment: Qt.AlignVCenter
source: "qrc:/SepantaUiKit/icons/folder.svg"
color: Colors.tertiaryEnable
}
FolderName {
width: undefined
height: undefined
Layout.fillHeight: true
Layout.fillWidth: true
text: "Sono"
}
}
}