generalbots/botui/ui/suite/assets/icons/gb-lock.svg
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- Add comprehensive documentation in botbook/ with 12 chapters
- Add botapp/ Tauri desktop application
- Add botdevice/ IoT device support
- Add botlib/ shared library crate
- Add botmodels/ Python ML models service
- Add botplugin/ browser extension
- Add botserver/ reorganized server code
- Add bottemplates/ bot templates
- Add bottest/ integration tests
- Add botui/ web UI server
- Add CI/CD workflows in .forgejo/workflows/
- Add AGENTS.md and PROD.md documentation
- Add dependency management scripts (DEPENDENCIES.sh/ps1)
- Remove legacy src/ structure and migrations
- Clean up temporary and backup files
2026-04-19 08:14:25 -03:00

43 lines
1.4 KiB
XML

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- GB-inspired lock/security icon -->
<defs>
<linearGradient id="lockGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#6366f1"/>
<stop offset="100%" style="stop-color:#4f46e5"/>
</linearGradient>
</defs>
<!-- Lock shackle - rounded GB style -->
<path d="M7 10V7C7 4.23858 9.23858 2 12 2C14.7614 2 17 4.23858 17 7V10"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
fill="none"/>
<!-- Lock body - rounded rectangle with GB aesthetic -->
<rect x="5" y="10" width="14" height="12" rx="2"
fill="url(#lockGradient)"
stroke="currentColor"
stroke-width="1.5"/>
<!-- Keyhole - bot eye inspired circular design -->
<circle cx="12" cy="14.5" r="2" fill="#1e1b4b"/>
<!-- Keyhole slot -->
<path d="M12 16V18.5" stroke="#1e1b4b" stroke-width="2" stroke-linecap="round"/>
<!-- Highlight reflection - GB polish -->
<path d="M7 12C7 11.4477 7.44772 11 8 11H10C10.5523 11 11 11.4477 11 12"
stroke="white"
stroke-opacity="0.3"
stroke-width="1"
stroke-linecap="round"
fill="none"/>
<!-- Subtle inner border glow -->
<rect x="6" y="11" width="12" height="10" rx="1.5"
stroke="white"
stroke-opacity="0.1"
stroke-width="0.5"
fill="none"/>
</svg>