mirror of
https://github.com/logos-storage/logos-storage-app-skeleton.git
synced 2026-06-16 13:29:32 +00:00
12 lines
279 B
QML
12 lines
279 B
QML
import QtQuick
|
|
|
|
// Gear / cog icon — 4 cardinal teeth + ring with center hole
|
|
// . . ●. .
|
|
// . ● ● ● .
|
|
// ● ● . ● ●
|
|
// . ● ● ● .
|
|
// . . ● . .
|
|
DotIcon {
|
|
pattern: [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0]
|
|
}
|