generalbots/botui/ui/suite/assets/icons/gb-tasks.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

18 lines
776 B
XML

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<!-- Task list container -->
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"/>
<!-- Checkbox 1 - checked -->
<rect x="6" y="6" width="4" height="4" rx="1"/>
<polyline points="7 8 8 9 10 7"/>
<!-- Task line 1 -->
<line x1="13" y1="8" x2="18" y2="8"/>
<!-- Checkbox 2 - checked -->
<rect x="6" y="10" width="4" height="4" rx="1"/>
<polyline points="7 12 8 13 10 11"/>
<!-- Task line 2 -->
<line x1="13" y1="12" x2="18" y2="12"/>
<!-- Checkbox 3 - unchecked -->
<rect x="6" y="14" width="4" height="4" rx="1"/>
<!-- Task line 3 -->
<line x1="13" y1="16" x2="18" y2="16"/>
</svg>