SVG
Installation
SKILL.md
Quick Reference
| Topic | File | Key Trap |
|---|---|---|
| viewBox & Scaling | viewbox.md |
Missing viewBox = no scaling |
| Screen Readers | accessibility.md |
role="img" + title as first child |
| SVGO Config | optimization.md |
Default removes viewBox/title |
| Inline vs img | embedding.md |
<img> cannot be styled with CSS |
| currentColor | styling.md |
Hardcoded fills block theming |
Critical Defaults
<!-- Minimum viable SVG -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="..."/>
</svg>