12 lines
279 B
QML
Raw Normal View History

2026-02-21 07:07:42 +04:00
import QtQuick
2026-02-22 16:37:27 +04:00
// Gear / cog icon — 4 cardinal teeth + ring with center hole
// . . ●. .
// . ● ● ● .
// ● ● . ● ●
// . ● ● ● .
// . . ● . .
2026-02-21 07:07:42 +04:00
DotIcon {
2026-02-22 16:37:27 +04:00
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]
2026-02-21 07:07:42 +04:00
}