mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-16 13:29:32 +00:00
13 lines
213 B
QML
13 lines
213 B
QML
import QtQuick
|
|
|
|
// Right arrow pattern — manual port forwarding
|
|
DotIcon {
|
|
pattern: [
|
|
0, 0, 1, 0, 0,
|
|
0, 0, 0, 1, 0,
|
|
1, 1, 1, 1, 1,
|
|
0, 0, 0, 1, 0,
|
|
0, 0, 1, 0, 0
|
|
]
|
|
}
|