updated aside icons

This commit is contained in:
victorAnumudu
2025-04-08 11:42:43 +01:00
parent ac48a6de28
commit f00a6bc8ac
3 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -11,7 +11,7 @@ import { LuPanelRight } from "react-icons/lu";
import { FcGoogle } from "react-icons/fc";
import { IoLogoApple } from "react-icons/io5";
import { FcSalesPerformance } from "react-icons/fc";
import { FaLongArrowAltRight } from "react-icons/fa";
export default function Icons({name, className}) {
return (
@@ -48,6 +48,8 @@ export default function Icons({name, className}) {
<IoLogoApple className={`text-base ${className}`} />
:name.toLowerCase() == 'sales' ?
<FcSalesPerformance className={`text-base ${className}`} />
:name.toLowerCase() == 'arrow-right' ?
<FaLongArrowAltRight className={`text-base ${className}`} />
:
null
}