For my extension, I want to display specific items on a tree view with icons representing their language. Instead of saving 90 svgs, I'm exploring the possibility of accessing Visual Studio Code icons directly from the IDE through an API call or other option. I know there are various icons available, including product icons. If that's not feasible, is there a way to obtain these icons even if they're in SVG format?
I can't simply use vscode.ThemeIcon.File; since the items being displayed are code snippets, not entire files.