To use the icons, the codicons.css file must be included in the page:
1<link rel="stylesheet" href="path/to/codicon.css" id="vscode-codicon-stylesheet">
1<!--2 Download codicons from https://github.com/microsoft/vscode-codicons3 4 Note the required `id` on the link element!5 To use web fonts in web components, the component needs to include6 the font stylesheet in addition to the page. This id serves as a lookup so7 the icon component can automatically create and insert it's own link tag.8-->9<link10 rel="stylesheet"11 href="path/to/codicon.css"12 id="vscode-codicon-stylesheet"13/>14 15<vscode-icon name="account"></vscode-icon>16<vscode-icon name="account" size="32"></vscode-icon>17<vscode-icon name="account" size="48"></vscode-icon>18<vscode-icon name="account" size="64"></vscode-icon>
1<vscode-icon name="account" action-icon></vscode-icon>2<vscode-icon name="add" action-icon></vscode-icon>3<vscode-icon name="git-compare" action-icon></vscode-icon>
1<vscode-icon name="loading" spin spin-duration="1"></vscode-icon>2<vscode-icon name="sync" spin></vscode-icon>3<vscode-icon name="gear" spin spin-duration="2"></vscode-icon>
For the searchable list, see the project page.