From 6b4a025e0e08265cd4095a75638525df91f54718 Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Wed, 28 Dec 2022 17:04:20 +0100 Subject: [PATCH] add User, LogIn, LogOut icons --- components/Icon.tsx | 62 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/components/Icon.tsx b/components/Icon.tsx index b846de7..156f3e9 100644 --- a/components/Icon.tsx +++ b/components/Icon.tsx @@ -1,6 +1,9 @@ type iconselection = | "Menu" + | "User" | "Users" + | "LogIn" + | "LogOut" | "Link2" | "ExternalLink" | "Code" @@ -42,6 +45,25 @@ const Icon = ({ icon, width, height, ...props }: iconprops) => { ); + case "User": + return ( + + + + + ); case "Users": return ( { ); + case "LogIn": + return ( + + + + + + ); + case "LogOut": + return ( + + + + + + ); case "Link2": return (