mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-14 04:19:25 +00:00
13 lines
207 B
QML
13 lines
207 B
QML
import QtQuick
|
|
|
|
// Right-pointing triangle — play / start
|
|
DotIcon {
|
|
pattern: [
|
|
1, 0, 0, 0, 0,
|
|
1, 1, 0, 0, 0,
|
|
1, 1, 1, 0, 0,
|
|
1, 1, 0, 0, 0,
|
|
1, 0, 0, 0, 0
|
|
]
|
|
}
|