From 4d4c54d03ce07812cd3dd8a9909dea7bbd1a332c Mon Sep 17 00:00:00 2001 From: DhananjayMukhedkar Date: Tue, 12 Nov 2024 16:29:10 +0100 Subject: [PATCH] feat(icon): add rstudio logo --- src/components/icon/list.tsx | 49 ++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/src/components/icon/list.tsx b/src/components/icon/list.tsx index 3b625269..3573c1b3 100644 --- a/src/components/icon/list.tsx +++ b/src/components/icon/list.tsx @@ -110,6 +110,7 @@ export enum IconName { rightMenu, attachment, newChat, + rstudio, } export function getIcon( @@ -2081,6 +2082,54 @@ export function getIcon( ); + case IconName.rstudio: + return ( + + + + + + + + + + + + + + + ); + default: return ; }