From 6c71a1eb3e7de86d808824ae529045ff7e41504f Mon Sep 17 00:00:00 2001 From: Tom French <15848336+TomAFrench@users.noreply.github.com> Date: Fri, 21 Jun 2024 15:23:43 +0100 Subject: [PATCH] feat: add language icon for noir files (#82) --- icons/noir_dark.svg | 15 +++++++++++++++ icons/noir_light.svg | 14 ++++++++++++++ package.json | 4 ++++ 3 files changed, 33 insertions(+) create mode 100644 icons/noir_dark.svg create mode 100644 icons/noir_light.svg diff --git a/icons/noir_dark.svg b/icons/noir_dark.svg new file mode 100644 index 0000000..d496f2d --- /dev/null +++ b/icons/noir_dark.svg @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/icons/noir_light.svg b/icons/noir_light.svg new file mode 100644 index 0000000..82cf3ef --- /dev/null +++ b/icons/noir_light.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/package.json b/package.json index b2ca5c8..34053e8 100644 --- a/package.json +++ b/package.json @@ -65,6 +65,10 @@ "extensions": [ ".nr" ], + "icon": { + "light": "./icons/noir_light.svg", + "dark": "./icons/noir_dark.svg" + }, "configuration": "./language-configuration.json" } ],