From 5c502447b18f774cb647f1183dbdc25bbe443086 Mon Sep 17 00:00:00 2001 From: PKief Date: Tue, 22 Sep 2020 20:56:04 +0200 Subject: [PATCH] Add search file icon --- icons/search.svg | 3 +++ src/icons/fileIcons.ts | 1 + src/icons/languageIcons.ts | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 icons/search.svg diff --git a/icons/search.svg b/icons/search.svg new file mode 100644 index 0000000000..73aee364c8 --- /dev/null +++ b/icons/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/fileIcons.ts b/src/icons/fileIcons.ts index 872b4334e2..aba125fc14 100644 --- a/src/icons/fileIcons.ts +++ b/src/icons/fileIcons.ts @@ -964,5 +964,6 @@ export const fileIcons: FileIcons = { ] }, { name: 'slug', fileNames: ['.slugignore'] }, + { name: 'search', fileExtensions: ['code-search'] }, ] }; diff --git a/src/icons/languageIcons.ts b/src/icons/languageIcons.ts index e506e8ff13..55c2561e1e 100644 --- a/src/icons/languageIcons.ts +++ b/src/icons/languageIcons.ts @@ -111,5 +111,5 @@ export const languageIcons: LanguageIcon[] = [ { icon: { name: 'svg' }, ids: ['svg'] }, { icon: { name: 'swift' }, ids: ['swift'] }, { icon: { name: 'react_ts' }, ids: ['typescriptreact'] }, - { icon: { name: 'magnify' }, ids: ['search-result'] }, + { icon: { name: 'search' }, ids: ['search-result'] }, ];