Add delete icon

This commit is contained in:
Arnaud 2026-02-21 07:49:47 +04:00
parent 4db25d4c24
commit 52490bfcdf
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

12
src/qml/DeleteIcon.qml Normal file
View File

@ -0,0 +1,12 @@
import QtQuick
// X / delete icon
DotIcon {
pattern: [
1, 0, 0, 0, 1,
0, 1, 0, 1, 0,
0, 0, 1, 0, 0,
0, 1, 0, 1, 0,
1, 0, 0, 0, 1
]
}