botui/ui/suite/assets/icons/gb-warning.svg
Rodrigo Rodriguez (Pragmatismo) b8f1053575 feat(mail): add email tracking UI to Suite mail app
- Add Tracking folder to sidebar with 📊 icon
- Display tracking stats panel (sent, opened, rate, avg time)
- Show read status indicators (✓✓ green=read, gray=sent)
- Add read count badges for multiple opens
- Implement tracking item details view
- Add CSS for read indicators, stats panel, tooltips
2025-12-04 18:15:31 -03:00

25 lines
992 B
XML

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- GB-inspired warning icon - triangular with bot aesthetic -->
<defs>
<linearGradient id="warningGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#fbbf24"/>
<stop offset="100%" style="stop-color:#f59e0b"/>
</linearGradient>
</defs>
<!-- Warning triangle with rounded corners - GB style -->
<path d="M12 2L2 20C1.7 20.5 2.1 21 2.6 21H21.4C21.9 21 22.3 20.5 22 20L12 2Z"
fill="url(#warningGradient)"
stroke="#d97706"
stroke-width="1"
stroke-linejoin="round"/>
<!-- Bot-style exclamation with rounded elements -->
<rect x="11" y="8" width="2" height="6" rx="1" fill="#7c2d12"/>
<!-- Dot at bottom - circular like GB branding -->
<circle cx="12" cy="17" r="1.2" fill="#7c2d12"/>
<!-- Subtle inner highlight -->
<path d="M12 4L4.5 18H19.5L12 4Z" fill="white" fill-opacity="0.15"/>
</svg>