
Announcements
How can I import a custom SVG button in Power Apps?
You can import the SVG as media in Power Apps and then use the image control to reference it and the OnSelect property of the image to control its function.
Or, you can take the svg code and add it directly to an image by prepending some text in front of it like this:
ImageControl.Image:
"data:image/svg+xml," & EncodeUrl(
"YOUR SVG CODE GOES HERE"
)