This directory contains SVG icons, documentation, and code patterns for working with SVGs in Power Apps.
- INDEX.md - Complete searchable catalog of all SVG files
- Best SVG Snippet - Comprehensive guide to SVG usage
- SVG Files - Actual SVG icon files
// In an Image control's Image property:
"data:image/svg+xml;utf8," & EncodeUrl("<svg>...</svg>")
// Replace default color with app theme color
With(
{
svgCode: "<svg>...</svg>",
themeColor: Left(Substitute(JSON(App.Theme.Colors.Primary), """", ""), 7)
},
"data:image/svg+xml;utf8," & EncodeUrl(
Substitute(svgCode, "#000000", themeColor)
)
)
| Resource | Description |
|---|---|
| INDEX.md | Complete SVG catalog with paths and descriptions |
| svg-files/ | Icon files organized by category |
| best-svg-snippet.md | Detailed SVG implementation guide |
| basic-spinner.md | Animated spinner implementation |
| replace-color-in-svg.md | Color replacement function |
| svgs.md | Additional resources and links |
| Date | Author | Changes |
|---|---|---|
| 2026-01-27 | Migration | Initial TOC and history section added |