From c8ef96a2d769aa614b6b0a2e53bb037c922949a3 Mon Sep 17 00:00:00 2001 From: Lawal Abubakar Babatunde Date: Wed, 29 May 2024 16:21:48 +0100 Subject: [PATCH] Added cairo icon to ensure all .cairo extensions are recognisable (#5665) Co-authored-by: Marek Kaput --- vscode-cairo/icons/cairo-dark.svg | 1 + vscode-cairo/icons/cairo-light.svg | 1 + vscode-cairo/package.json | 4 ++++ 3 files changed, 6 insertions(+) create mode 100644 vscode-cairo/icons/cairo-dark.svg create mode 100644 vscode-cairo/icons/cairo-light.svg diff --git a/vscode-cairo/icons/cairo-dark.svg b/vscode-cairo/icons/cairo-dark.svg new file mode 100644 index 00000000000..310388d4273 --- /dev/null +++ b/vscode-cairo/icons/cairo-dark.svg @@ -0,0 +1 @@ + diff --git a/vscode-cairo/icons/cairo-light.svg b/vscode-cairo/icons/cairo-light.svg new file mode 100644 index 00000000000..ee2a1cf2382 --- /dev/null +++ b/vscode-cairo/icons/cairo-light.svg @@ -0,0 +1 @@ + diff --git a/vscode-cairo/package.json b/vscode-cairo/package.json index 980c3965988..871f1b9ae7b 100644 --- a/vscode-cairo/package.json +++ b/vscode-cairo/package.json @@ -29,6 +29,10 @@ "extensions": [ ".cairo" ], + "icon": { + "light": "./icons/cairo-light.svg", + "dark": "./icons/cairo-dark.svg" + }, "configuration": "./language-configuration.json" } ],