From e117247ff75a51c6c9e7d108436fa8df47bbd5a8 Mon Sep 17 00:00:00 2001 From: elad Date: Wed, 23 Aug 2023 14:10:16 +0300 Subject: [PATCH] adding 2 needed icons --- src/components/icons/index.tsx | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/src/components/icons/index.tsx b/src/components/icons/index.tsx index 8a1904f8..20d5e865 100644 --- a/src/components/icons/index.tsx +++ b/src/components/icons/index.tsx @@ -1614,7 +1614,7 @@ export const icons = { ), - redirect: ({ fill, width, height, onClick = () => {} }: IconProp) => ( + 'redirect': ({ fill, width, height, onClick = () => {} }: IconProp) => ( ), - beaker: ({ fill, width, height, onClick = () => {} }: IconProp) => ( + 'beaker': ({ fill, width, height, onClick = () => {} }: IconProp) => ( ), - annotations: ({ fill, width, height, onClick = () => {} }: IconProp) => ( + 'annotations': ({ fill, width, height, onClick = () => {} }: IconProp) => ( - ) + ), + 'code-tags': ({ fill, width, height, onClick = () => {} }: IconProp) => ( + + + + + + + ), + 'sidebar-collapse': ({ fill, width, height, onClick = () => {} }: IconProp) => ( + + + + + + + + + ), }; export type IconType = keyof typeof icons;