mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-07-31 19:33:19 +00:00
13 lines
187 B
QML
13 lines
187 B
QML
|
|
import QtQuick
|
||
|
|
|
||
|
|
// Settings / gear icon
|
||
|
|
DotIcon {
|
||
|
|
pattern: [
|
||
|
|
0, 1, 0, 1, 0,
|
||
|
|
1, 1, 1, 1, 1,
|
||
|
|
0, 1, 1, 1, 0,
|
||
|
|
1, 1, 1, 1, 1,
|
||
|
|
0, 1, 0, 1, 0
|
||
|
|
]
|
||
|
|
}
|