- 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
17 lines
711 B
XML
17 lines
711 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">
|
|
<!-- Workflow nodes -->
|
|
<circle cx="5" cy="5" r="3"/>
|
|
<circle cx="19" cy="5" r="3"/>
|
|
<circle cx="5" cy="19" r="3"/>
|
|
<circle cx="19" cy="19" r="3"/>
|
|
<!-- Center hub -->
|
|
<rect x="9" y="9" width="6" height="6" rx="1"/>
|
|
<!-- Connection lines -->
|
|
<line x1="8" y1="5" x2="9" y2="10"/>
|
|
<line x1="16" y1="5" x2="15" y2="10"/>
|
|
<line x1="8" y1="19" x2="9" y2="14"/>
|
|
<line x1="16" y1="19" x2="15" y2="14"/>
|
|
<!-- Flow arrows -->
|
|
<path d="M12 6 L12 9" stroke-dasharray="1 1"/>
|
|
<path d="M12 15 L12 18" stroke-dasharray="1 1"/>
|
|
</svg>
|