From c80bd0aacb89bce431727a99319d862baf105440 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Tue, 25 Jul 2023 12:04:26 +0100 Subject: [PATCH] Added .circom icons --- libs/remix-ui/helper/src/lib/remix-ui-helper.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/remix-ui/helper/src/lib/remix-ui-helper.ts b/libs/remix-ui/helper/src/lib/remix-ui-helper.ts index e06253c325..21925ed8f8 100644 --- a/libs/remix-ui/helper/src/lib/remix-ui-helper.ts +++ b/libs/remix-ui/helper/src/lib/remix-ui-helper.ts @@ -80,7 +80,8 @@ export const getPathIcon = (path: string) => { ? 'fak fa-lexon' : path.endsWith('ts') ? 'small fak fa-ts-logo' : path.endsWith('.tsc') ? 'fad fa-brackets-curly' : path.endsWith('.cairo') - ? 'small fak fa-cairo' : 'far fa-file' + ? 'small fak fa-cairo' : path.endsWith('.circom') + ? 'fak fa-circom-plug1' : 'far fa-file' } export const isNumeric = (value) => {