mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-07-31 19:33:19 +00:00
19 lines
320 B
QML
19 lines
320 B
QML
import QtQuick
|
|
|
|
// X pattern — delete / remove
|
|
// ● . . . ●
|
|
// . ● . ● .
|
|
// . . ● . .
|
|
// . ● . ● .
|
|
// ● . . . ●
|
|
// qmllint disable unqualified
|
|
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
|
|
]
|
|
}
|