mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
Remove old SVGs
This commit is contained in:
@ -11,19 +11,6 @@ export async function createQuickPick(context: ExtensionContext) {
|
||||
window.showInformationMessage(`Button triggered`);
|
||||
});
|
||||
quickPick.items = ['eins', 'zwei', 'drei'].map(label => ({ label }));
|
||||
quickPick.buttons = [
|
||||
{
|
||||
iconPath: {
|
||||
dark: context.asAbsolutePath('resources/dark/back.svg'),
|
||||
light: context.asAbsolutePath('resources/light/back.svg')
|
||||
}
|
||||
},
|
||||
{
|
||||
iconPath: {
|
||||
dark: context.asAbsolutePath('resources/dark/forward.svg'),
|
||||
light: context.asAbsolutePath('resources/light/forward.svg')
|
||||
}
|
||||
},
|
||||
];
|
||||
quickPick.buttons = [ window.quickInputBackButton ];
|
||||
quickPick.show();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user