プロダクトアイコンリファレンス

Visual Studio Code には、ビューやエディターで使用される組み込みアイコンのセットが含まれていますが、ホバー、ステータスバー、および拡張機能でも使用できます。これらのアイコンは、UI 全体でファイル名の横に使用されるファイルアイコンとは対照的に、プロダクトアイコンです。

VS Code に同梱されているプロダクトアイコンは、Codicon アイコンフォントに含まれており、既定のプロダクトアイコンテーマを形成しています。拡張機能は、これらのアイコンを再定義し、VS Code に新しい外観を与える新しいプロダクトアイコンテーマを提供できます。

これを可能にするために、すべてのプロダクトアイコンは ID で識別されます。アイコン識別子は、ラベル ($(pencil)) の UI コンポーネント、API では ThemeIcon、およびアイコンが必要な場合の機能拡張で使用されるものです。

アイコン識別子と実際のアイコンフォントグリフの関連付けは、プロダクトアイコンテーマによって行われます。

ラベル内のアイコン

アイコンは、ホバーの Markdown ラベル、StatusBarItem テキスト、および QuickPickItem ラベル API で使用できます。Markdown でアイコンを追加する構文は $(iconIdentifier) です。

$(alert);

テキストを埋め込んだり、複数のアイコンを使用したりすることもできます。

$(eye) $(heart) $(mark-github) GitHub

リテラルの ${...} テキストをラベル内に配置するには、円記号で $ をエスケープします。

\$(eye)

アニメーション

次のアイコンに回転アニメーションを適用するには、アイコン名に ~spin を付加します。

  • sync
  • loading
  • gear
$(sync~spin)

アイコンの機能拡張ポイント

アイコンの機能拡張ポイントを使用すると、拡張機能は、既定のアイコンとともに、ID で追加のアイコンを定義できます。アイコン ID は、拡張機能 (またはその拡張機能に依存する他の拡張機能) で、ラベル ($(iconId)) 内、または ThemeIcon を使用できるすべての場所 (new ThemeIcon("iconId")) で使用できます。

"contributes": {
  "icons": {
        "distro-ubuntu": {
            "description": "Ubuntu icon",
            "default": {
                "fontPath": "./distroicons.woff",
                "fontCharacter": "\\E001"
            }
        },
        "distro-fedora": {
            "description": "Ubuntu icon",
            "default": {
                "fontPath": "./distroicons.woff",
                "fontCharacter": "\\E002"
            }
        }
    }
}

プロダクトアイコンテーマは、(アイコン ID について知っている場合) アイコンを再定義できます。

アイコンリスト

以下は、組み込みのプロダクトアイコンを識別子別にリストしたものです。

アイコンの ID は、アイコンが使用される場所を識別します。既定の codicon ID は、既定で使用される codicon ライブラリのアイコンを示し、プレビューにはそのアイコンの外観が表示されます。

プロダクトアイコンテーマは、codicon ライブラリのすべてのアイコンだけでなく、各アイコンを個別に置き換えることができます。

プレビュー 識別子 既定の codicon ID 説明
accounts-view-bar-icon account ビューバーのアカウントアイコン。
breakpoints-activate activate-breakpoints ブレークポイントビューのアクティブ化アクションのアイコン。
breakpoints-remove-all close-all ブレークポイントビューの [すべて削除] アクションのアイコン。
breakpoints-view-icon debug-alt ブレークポイントビューのビューアイコン。
callhierarchy-incoming call-incoming コール階層ビューの着信コールのアイコン。
callhierarchy-outgoing call-outgoing コール階層ビューの発信コールのアイコン。
callstack-view-icon debug-alt コールスタックビューのビューアイコン。
callstack-view-session bug コールスタックビューのセッションアイコンのアイコン。
chat-editor-label-icon comment-discussion チャットエディターラベルのアイコン。
comments-view-icon comment-discussion コメントビューのビューアイコン。
debug-breakpoint debug-breakpoint ブレークポイントのアイコン。
debug-breakpoint-conditional debug-breakpoint-conditional 条件付きブレークポイントのアイコン。
debug-breakpoint-conditional-disabled debug-breakpoint-conditional-disabled 無効な条件付きブレークポイントのアイコン。
debug-breakpoint-conditional-unverified debug-breakpoint-conditional-unverified 未検証の条件付きブレークポイントのアイコン。
debug-breakpoint-data debug-breakpoint-data データブレークポイントのアイコン。
debug-breakpoint-data-disabled debug-breakpoint-data-disabled 無効なデータブレークポイントのアイコン。
debug-breakpoint-data-unverified debug-breakpoint-data-unverified 未検証のデータブレークポイントのアイコン。
debug-breakpoint-disabled debug-breakpoint-disabled 無効なブレークポイントのアイコン。
debug-breakpoint-function debug-breakpoint-function 関数ブレークポイントのアイコン。
debug-breakpoint-function-disabled debug-breakpoint-function-disabled 無効な関数ブレークポイントのアイコン。
debug-breakpoint-function-unverified debug-breakpoint-function-unverified 未検証の関数ブレークポイントのアイコン。
debug-breakpoint-log debug-breakpoint-log ログブレークポイントのアイコン。
debug-breakpoint-log-disabled debug-breakpoint-log-disabled 無効なログブレークポイントのアイコン。
debug-breakpoint-log-unverified debug-breakpoint-log-unverified 未検証のログブレークポイントのアイコン。
debug-breakpoint-unsupported debug-breakpoint-unsupported サポートされていないブレークポイントのアイコン。
debug-breakpoint-unverified debug-breakpoint-unverified 未検証のブレークポイントのアイコン。
debug-collapse-all collapse-all デバッグビューの [すべて折りたたむ] アクションのアイコン。
debug-configure gear デバッグ構成アクションのアイコン。
debug-console debug-console デバッグコンソールを開くアクションのアイコン。
debug-console-clear-all clear-all デバッグコンソールの [すべてクリア] アクションのアイコン。
debug-console-evaluation-input arrow-small-right デバッグ評価入力マーカーのアイコン。
debug-console-evaluation-prompt chevron-right デバッグ評価プロンプトのアイコン。
debug-console-view-icon debug-console デバッグコンソールビューのビューアイコン。
debug-continue debug-continue デバッグ続行アクションのアイコン。
debug-disconnect debug-disconnect デバッグ切断アクションのアイコン。
debug-gripper gripper デバッグバーグリッパーのアイコン。
debug-hint debug-hint エディターグリフマージンにホバーで表示されるブレークポイントヒントのアイコン。
debug-pause debug-pause デバッグ一時停止アクションのアイコン。
debug-restart debug-restart デバッグ再起動アクションのアイコン。
debug-restart-frame debug-restart-frame デバッグフレーム再起動アクションのアイコン。
debug-reverse-continue debug-reverse-continue デバッグ逆続行アクションのアイコン。
debug-stackframe debug-stackframe エディターグリフマージンに表示されるスタックフレームのアイコン。
debug-stackframe-focused debug-stackframe-focused エディターグリフマージンに表示されるフォーカスされたスタックフレームのアイコン。
debug-start debug-start デバッグ開始アクションのアイコン。
debug-step-back debug-step-back デバッグステップバックアクションのアイコン。
debug-step-into debug-step-into デバッグステップインアクションのアイコン。
debug-step-out debug-step-out デバッグステップアウトアクションのアイコン。
debug-step-over debug-step-over デバッグステップオーバーアクションのアイコン。
debug-stop debug-stop デバッグ停止アクションのアイコン。
default-view-icon window 既定のビューアイコン。
diff-editor-next-change arrow-down 差分エディターの [次の変更] アクションのアイコン。
diff-editor-previous-change arrow-up 差分エディターの [前の変更] アクションのアイコン。
diff-editor-toggle-whitespace whitespace 差分エディターの [空白の切り替え] アクションのアイコン。
diff-insert add 差分エディターの挿入の行装飾。
diff-remove remove 差分エディターの削除の行装飾。
diff-review-close close 差分レビューの [閉じる] のアイコン。
diff-review-insert add 差分レビューの [挿入] のアイコン。
diff-review-remove remove 差分レビューの [削除] のアイコン。
disassembly-editor-label-icon debug 逆アセンブルエディターラベルのアイコン。
explorer-view-icon files エクスプローラービューのビューアイコン。
extensions-clear-search-results clear-all 拡張機能ビューの [検索結果のクリア] アクションのアイコン。
extensions-configure-recommended pencil 拡張機能ビューの [推奨される拡張機能の構成] アクションのアイコン。
extensions-editor-label-icon extensions 拡張機能エディターラベルのアイコン。
extensions-filter filter 拡張機能ビューの [フィルター] アクションのアイコン。
extensions-info-message info 拡張機能エディターの情報メッセージとともに表示されるアイコン。
extensions-install-count cloud-download 拡張機能ビューおよびエディターのインストール数とともに表示されるアイコン。
extensions-install-local-in-remote cloud-download 拡張機能ビューの [ローカル拡張機能をリモートにインストール] アクションのアイコン。
extensions-install-workspace-recommended cloud-download 拡張機能ビューの [ワークスペースで推奨される拡張機能をインストール] アクションのアイコン。
extensions-manage gear 拡張機能ビューの [管理] アクションのアイコン。
extensions-rating star 拡張機能ビューおよびエディターの評価とともに表示されるアイコン。
extensions-refresh refresh 拡張機能ビューの [更新] アクションのアイコン。
extensions-remote remote 拡張機能ビューおよびエディターで拡張機能がリモートであることを示すアイコン。
extensions-star-empty star-empty 拡張機能エディターの評価に使用される空の星アイコン。
extensions-star-full star-full 拡張機能エディターの評価に使用される満点の星アイコン。
extensions-star-half star-half 拡張機能エディターの評価に使用される半分の星アイコン。
extensions-sync-enabled sync 拡張機能が同期されていることを示すアイコン。
extensions-sync-ignored sync-ignored 拡張機能が同期時に無視されることを示すアイコン。
extensions-view-icon extensions 拡張機能ビューのビューアイコン。
extensions-warning-message warning 拡張機能エディターの警告メッセージとともに表示されるアイコン。
find-collapsed chevron-right エディターの検索ウィジェットが折りたたまれていることを示すアイコン。
find-expanded chevron-down エディターの検索ウィジェットが展開されていることを示すアイコン。
find-next-match arrow-down エディターの検索ウィジェットの [次を検索] のアイコン。
find-previous-match arrow-up エディターの検索ウィジェットの [前を検索] のアイコン。
find-replace replace エディターの検索ウィジェットの [置換] のアイコン。
find-replace-all replace-all エディターの検索ウィジェットの [すべて置換] のアイコン。
find-selection selection エディターの検索ウィジェットの [選択範囲内を検索] のアイコン。
folding-collapsed chevron-right エディターグリフマージンの折りたたまれた範囲のアイコン。
folding-expanded chevron-down エディターグリフマージンの展開された範囲のアイコン。
getting-started-beginner lightbulb 入門の初心者カテゴリに使用されるアイコン
getting-started-codespaces github 入門の codespaces カテゴリに使用されるアイコン
getting-started-item-checked pass-filled 完了した入門項目を表すために使用されます
getting-started-item-unchecked circle-large-outline 完了していない入門項目を表すために使用されます
getting-started-setup heart 入門のセットアップカテゴリに使用されるアイコン
goto-next-location arrow-down 次のエディターの場所へ移動するためのアイコン。
goto-previous-location arrow-up 前のエディターの場所へ移動するためのアイコン。
keybindings-add add キーバインド UI の [追加] アクションのアイコン。
keybindings-edit edit キーバインド UI の [編集] アクションのアイコン。
keybindings-editor-label-icon keyboard キーバインドエディターラベルのアイコン。
keybindings-record-keys record-keys キーバインド UI の [キーの記録] アクションのアイコン。
keybindings-sort sort-precedence キーバインド UI の [優先順位で並べ替え] トグルのアイコン。
loaded-scripts-view-icon debug-alt 読み込まれたスクリプトビューのビューアイコン。
marker-navigation-next chevron-down 次のマーカーへ移動するためのアイコン。
marker-navigation-previous chevron-up 前のマーカーへ移動するためのアイコン。
markers-view-filter filter マーカービューのフィルター構成のアイコン。
markers-view-icon warning マーカービューのビューアイコン。
markers-view-multi-line-collapsed chevron-down マーカービューで複数行が折りたたまれていることを示すアイコン。
markers-view-multi-line-expanded chevron-up マーカービューで複数行が表示されていることを示すアイコン。
multi-diff-editor-label-icon diff-multiple マルチ差分エディターラベルのアイコン。
notebook-clear clear-all ノートブックエディターでセル出力をクリアするためのアイコン。
notebook-collapsed chevron-right ノートブックエディターで折りたたまれたセクションを注釈するためのアイコン。
notebook-delete-cell trash ノートブックエディターでセルを削除するためのアイコン。
notebook-edit pencil ノートブックエディターでセルを編集するためのアイコン。
notebook-execute play ノートブックエディターで実行するためのアイコン。
notebook-execute-all run-all ノートブックエディターですべてのセルを実行するためのアイコン。
notebook-expanded chevron-down ノートブックエディターで展開されたセクションを注釈するためのアイコン。
notebook-kernel-configure settings-gear ノートブックエディターのカーネル構成ウィジェットの構成アイコン。
notebook-kernel-select server-environment ノートブックエディターでカーネルを選択するための構成アイコン。
notebook-mimetype code ノートブックエディターの MIME タイプのアイコン。
notebook-move-down arrow-down ノートブックエディターでセルを下に移動するためのアイコン。
notebook-move-up arrow-up ノートブックエディターでセルを上に移動するためのアイコン。
notebook-open-as-text file-code ノートブックをテキストエディターで開くためのアイコン。
notebook-render-output プレビュー 差分エディターで出力をレンダリングするためのアイコン。
notebook-revert discard ノートブックエディターで元に戻すためのアイコン。
notebook-split-cell split-vertical ノートブックエディターでセルを分割するためのアイコン。
notebook-state-error error ノートブックエディターでエラー状態を示すアイコン。
notebook-state-success check ノートブックエディターで成功状態を示すアイコン。
notebook-stop primitive-square ノートブックエディターで実行を停止するためのアイコン。
notebook-stop-edit check ノートブックエディターでセルの編集を停止するためのアイコン。
notebook-unfold unfold ノートブックエディターでセルを展開するためのアイコン。
notifications-clear close 通知の [クリア] アクションのアイコン。
notifications-clear-all clear-all 通知の [すべてクリア] アクションのアイコン。
notifications-collapse chevron-down 通知の [折りたたみ] アクションのアイコン。
notifications-configure gear 通知の [構成] アクションのアイコン。
notifications-expand chevron-up 通知の [展開] アクションのアイコン。
notifications-hide chevron-down 通知の [非表示] アクションのアイコン。
open-editors-view-icon book 開いているエディタービューのビューアイコン。
outline-view-icon symbol-class アウトラインビューのビューアイコン。
output-view-icon output 出力ビューのビューアイコン。
panel-close close パネルを閉じるアイコン。
panel-maximize chevron-up パネルを最大化するアイコン。
panel-restore chevron-down パネルを復元するアイコン。
parameter-hints-next chevron-down 次のパラメーターヒントを表示するためのアイコン。
parameter-hints-previous chevron-up 前のパラメーターヒントを表示するためのアイコン。
ports-forward-icon plus 転送アクションのアイコン。
ports-open-browser-icon globe ブラウザーを開くアクションのアイコン。
ports-stop-forward-icon x 転送停止アクションのアイコン。
ports-view-icon plug リモートポートビューのビューアイコン。
preferences-clear-input clear-all 設定およびキーバインド UI の入力クリアのアイコン。
preferences-open-settings go-to-file 設定を開くコマンドのアイコン。
private-ports-view-icon lock プライベートリモートポートを表すアイコン。
public-ports-view-icon eye パブリックリモートポートを表すアイコン。
refactor-preview-view-icon lightbulb リファクタリングプレビュービューのビューアイコン。
remote-explorer-documentation book リモートエクスプローラービューのドキュメントアイコン。
remote-explorer-feedback twitter リモートエクスプローラービューのフィードバックアイコン。
remote-explorer-get-started star リモートエクスプローラービューの入門アイコン。
remote-explorer-report-issues comment リモートエクスプローラービューの問題レポートアイコン。
remote-explorer-review-issues issues リモートエクスプローラービューの問題レビューアイコン。
remote-explorer-view-icon remote-explorer リモートエクスプローラービューのビューアイコン。
review-comment-collapse chevron-up レビューコメントを折りたたむアイコン。
run-view-icon debug-alt 実行とデバッグビューのビューアイコン。
runtime-extensions-editor-label-icon extensions ランタイム拡張機能エディターラベルのアイコン。
search-clear-results clear-all 検索ビューの結果クリアのアイコン。
search-collapse-results collapse-all 検索ビューの結果折りたたみのアイコン。
search-details ellipsis 検索の詳細を表示するためのアイコン。
search-editor-label-icon search 検索エディターラベルのアイコン。
search-expand-results expand-all 検索ビューの結果展開のアイコン。
search-hide-replace chevron-right 検索ビューの置換セクションを折りたたむアイコン。
search-new-editor new-file 新しい検索エディターを開くアクションのアイコン。
search-refresh refresh 検索ビューの更新のアイコン。
search-remove close 検索結果を削除するためのアイコン。
search-replace replace 検索ビューの置換のアイコン。
search-replace-all replace-all 検索ビューのすべて置換のアイコン。
search-show-context list-selection 検索エディターのコンテキストを切り替えるためのアイコン。
search-show-replace chevron-down 検索ビューの置換セクションを展開するアイコン。
search-stop search-stop 検索ビューの停止のアイコン。
search-view-icon search 検索ビューのビューアイコン。
settings-add add 設定 UI の [追加] アクションのアイコン。
settings-discard discard 設定 UI の [破棄] アクションのアイコン。
settings-edit edit 設定 UI の [編集] アクションのアイコン。
settings-editor-label-icon settings 設定エディターラベルのアイコン。
settings-folder-dropdown triangle-down 分割 JSON 設定エディターのフォルダー ドロップダウン ボタンのアイコン。
settings-group-collapsed chevron-right 分割 JSON 設定エディターの折りたたまれたセクションのアイコン。
settings-group-expanded chevron-down 分割 JSON 設定エディターの展開されたセクションのアイコン。
settings-more-action gear 設定 UI の [その他のアクション] アクションのアイコン。
settings-remove close 設定 UI の [削除] アクションのアイコン。
settings-sync-view-icon sync 設定同期ビューのビューアイコン。
settings-view-bar-icon settings-gear ビューバーの設定アイコン。
source-control-view-icon source-control ソース管理ビューのビューアイコン。
suggest-more-info chevron-right 候補ウィジェットの [詳細情報] のアイコン。
tasks-list-configure gear タスク選択リストの構成アイコン。
tasks-remove close タスク選択リストの削除のアイコン。
terminal-kill trash ターミナルインスタンスを強制終了するためのアイコン。
terminal-new add 新しいターミナルインスタンスを作成するためのアイコン。
terminal-rename gear ターミナルクイックメニューの名前変更のアイコン。
terminal-view-icon terminal ターミナルビューのビューアイコン。
test-view-icon beaker テストビューのビューアイコン。
testing-cancel-icon close 進行中のテスト実行をキャンセルするためのアイコン。
testing-debug-icon debug-alt 「テストのデバッグ」アクションのアイコン。
testing-error-icon warning エラーが発生したテストに表示されるアイコン。
testing-failed-icon close 失敗したテストに表示されるアイコン。
testing-passed-icon pass 合格したテストに表示されるアイコン。
testing-queued-icon watch キューに入っているテストに表示されるアイコン。
testing-run-all-icon run-all 「すべてのテストを実行」アクションのアイコン。
testing-run-icon run 「テストの実行」アクションのアイコン。
testing-show-as-list-icon list-tree テストエクスプローラーがツリーとして無効になっている場合に表示されるアイコン。
testing-skipped-icon debug-step-over スキップされたテストに表示されるアイコン。
testing-unset-icon circle-outline 未設定状態のテストに表示されるアイコン。
timeline-open history タイムラインを開くアクションのアイコン。
timeline-pin pin タイムラインをピン留めするアクションのアイコン。
timeline-refresh refresh タイムラインを更新するアクションのアイコン。
timeline-unpin pinned タイムラインのピン留めを解除するアクションのアイコン。
timeline-view-icon history タイムラインビューのビューアイコン。
variables-view-icon debug-alt 変数ビューのビューアイコン。
view-pane-container-collapsed chevron-right 折りたたまれたビューペインコンテナーのアイコン。
view-pane-container-expanded chevron-down 展開されたビューペインコンテナーのアイコン。
watch-expressions-add add ウォッチビューの [追加] アクションのアイコン。
watch-expressions-add-function-breakpoint add ウォッチビューの [関数ブレークポイントの追加] アクションのアイコン。
watch-expressions-remove-all close-all ウォッチビューの [すべて削除] アクションのアイコン。
watch-view-icon debug-alt ウォッチビューのビューアイコン。
widget-close close ウィジェットの [閉じる] アクションのアイコン。
workspace-trust-editor-label-icon shield ワークスペースの信頼エディターラベルのアイコン。

Codicon ライブラリには、VS Code ビューで使用されるすべてのアイコンと、便利なアイコンのセットが含まれています。

VS Code 拡張機能は、これらのアイコンをラベル、ビュー、およびツリーで使用できます。

プレビュー 識別子
account
activate-breakpoints
add
alert
archive
array
arrow-both
arrow-circle-down
arrow-circle-left
arrow-circle-right
arrow-circle-up
arrow-down
arrow-left
arrow-right
arrow-small-down
arrow-small-left
arrow-small-right
arrow-small-up
arrow-swap
arrow-up
azure-devops
azure
beaker-stop
beaker
bell
bell-dot
bell-slash
bell-slash-dot
bold
book
bookmark
bracket-dot
bracket-error
bracket
briefcase
broadcast
browser
bug
calendar
call-incoming
call-outgoing
case-sensitive
check
check-all
checklist
chevron-down
chevron-left
chevron-right
chevron-up
chip
chrome-close
chrome-maximize
chrome-minimize
chrome-restore
circle-filled
circle-large-filled
circle-large-outline
circle-outline
circle-slash
circuit-board
clear-all
clippy
clock
clone
close
close-all
close-dirty
cloud
cloud-download
cloud-upload
code
coffee
collapse-all
color-mode
combine
comment
comment-add
comment-discussion
comment-draft
comment-unresolved
compare-changes
compass-active
compass-dot
compass
console
copilot
copy
credit-card
dash
dashboard
database
debug-all
debug
debug-alt
debug-alt-small
debug-breakpoint
debug-breakpoint-conditional
debug-breakpoint-conditional-disabled
debug-breakpoint-conditional-unverified
debug-breakpoint-data
debug-breakpoint-data-disabled
debug-breakpoint-data-unverified
debug-breakpoint-disabled
debug-breakpoint-function
debug-breakpoint-function-disabled
debug-breakpoint-function-unverified
debug-breakpoint-log
debug-breakpoint-log-disabled
debug-breakpoint-log-unverified
debug-breakpoint-unsupported
debug-breakpoint-unverified
debug-console
debug-continue-small
debug-continue
debug-coverage
debug-disconnect
debug-hint
debug-line-by-line
debug-pause
debug-rerun
debug-restart
debug-restart-frame
debug-reverse-continue
debug-stackframe
debug-stackframe-active
debug-stackframe-dot
debug-stackframe-focused
debug-start
debug-step-back
debug-step-into
debug-step-out
debug-step-over
debug-stop
desktop-download
device-camera
device-camera-video
device-desktop
device-mobile
diff
diff-added
diff-ignored
diff-modified
diff-removed
diff-renamed
discard
edit
editor-layout
ellipsis
empty-window
error-small
error
exclude
expand-all
export
extensions
eye
eye-closed
eye-unwatch
eye-watch
feedback
file
file-add
file-binary
file-code
file-directory
file-directory-create
file-media
file-pdf
file-submodule
file-symlink-directory
file-symlink-file
file-text
file-zip
files
filter-filled
filter
flame
fold
fold-down
fold-up
folder
folder-active
folder-library
folder-opened
game
gather
gear
gift
gist
gist-fork
gist-new
gist-private
gist-secret
git-branch
git-branch-create
git-branch-delete
git-commit
git-compare
git-fetch
git-fork-private
git-merge
git-pull-request
git-pull-request-abandoned
git-pull-request-closed
git-pull-request-create
git-pull-request-draft
git-pull-request-new-changes
git-pull-request-go-to-changes
github
github-action
github-alt
github-inverted
globe
go-to-file
grabber
graph
graph-left
graph-line
graph-scatter
gripper
group-by-ref-type
heart
history
home
horizontal-rule
hubot
inbox
indent
info
insert
inspect
issue-closed
issue-draft
issue-opened
issue-reopened
issues
italic
jersey
json
kebab-horizontal
kebab-vertical
key
keyboard
law
layers-active
layers-dot
layers
layout-activitybar-left
layout-activitybar-right
layout-centered
layout-menubar
layout-panel-center
layout-panel-justify
layout-panel-left
layout-panel-right
layout-panel
layout-sidebar-left
layout-sidebar-right
layout-statusbar
layout
library
light-bulb
lightbulb
lightbulb-autofix
link
link-external
list-filter
list-flat
list-ordered
list-selection
list-tree
list-unordered
live-share
loading
location
lock-small
lock
log-in
log-out
logo-github
magnet
mail
mail-read
mail-reply
mark-github
markdown
megaphone
mention
menu
merge
mic
mic-filled
microscope
milestone
mirror
mirror-private
mirror-public
more
mortar-board
move
multiple-windows
music
mute
new-file
new-folder
newline
no-newline
note
notebook
notebook-template
octoface
open-preview
organization
organization-filled
organization-outline
output
package
paintcan
pass
pass-filled
pencil
person
person-add
person-filled
person-follow
person-outline
pie-chart
piano
pin
pinned
pinned-dirty
play
play-circle
plug
plus
preserve-case
プレビュー
primitive-dot
primitive-square
project
pulse
question
quote
radio-tower
reactions
record
record-keys
record-small
redo
references
refresh
regex
remote
remote-explorer
remove
remove-close
repl
replace
replace-all
reply
repo
repo-clone
repo-create
repo-delete
repo-force-push
repo-forked
repo-pull
repo-push
repo-sync
report
request-changes
rocket
root-folder
root-folder-opened
rss
ruby
run
run-all
run-above
run-below
run-errors
save
save-all
save-as
screen-full
screen-normal
search
search-save
search-stop
search-fuzzy
selection
send
server
server-environment
server-process
settings
settings-gear
shield
sign-in
sign-out
smiley
snake
sparkle
sort-precedence
source-control
split-horizontal
split-vertical
squirrel
star
star-add
star-delete
star-empty
star-full
star-half
stop
stop-circle
symbol-array
symbol-boolean
symbol-class
symbol-color
symbol-constant
symbol-constructor
symbol-enum
symbol-enum-member
symbol-event
symbol-field
symbol-file
symbol-folder
symbol-function
symbol-interface
symbol-key
symbol-keyword
symbol-method
symbol-misc
symbol-module
symbol-namespace
symbol-null
symbol-number
symbol-numeric
symbol-object
symbol-operator
symbol-package
symbol-parameter
symbol-property
symbol-reference
symbol-ruler
symbol-snippet
symbol-string
symbol-struct
symbol-structure
symbol-text
symbol-type-parameter
symbol-unit
symbol-value
symbol-variable
sync
sync-ignored
tag-add
tag-remove
tag
target
tasklist
telescope
terminal-bash
terminal-cmd
terminal-debian
terminal-linux
terminal-powershell
terminal-tmux
terminal-ubuntu
terminal
text-size
three-bars
thumbsdown
thumbsdown-filled
thumbsup
thumbsup-filled
tools
trash
trashcan
triangle-down
triangle-left
triangle-right
triangle-up
twitter
type-hierarchy
type-hierarchy-sub
type-hierarchy-super
unfold
ungroup-by-ref-type
unlock
unmute
unverified
variable
verified-filled
verified
versions
vm
vm-active
vm-connect
vm-outline
vm-running
vr
warning
watch
whitespace
whole-word
window
word-wrap
workspace-trusted
workspace-unknown
workspace-untrusted
wrench
wrench-subaction
x
zap
zoom-in
zoom-out