more update added to layout design

This commit was merged in pull request #3.
This commit is contained in:
victorAnumudu
2025-04-06 13:33:43 +01:00
parent a19942b12b
commit 06a0d4d7cd
15 changed files with 359 additions and 29 deletions
+7
View File
@@ -6,6 +6,9 @@ import { GoDotFill } from 'react-icons/go'
import { IoPeople, IoTrash } from 'react-icons/io5'
import { TbPlayerTrackNext, TbPlayerTrackPrev } from 'react-icons/tb'
import { IoMdSettings } from "react-icons/io";
import { LuMessageSquareText } from "react-icons/lu";
import { LuPanelRight } from "react-icons/lu";
export default function Icons({name, className}) {
@@ -33,6 +36,10 @@ export default function Icons({name, className}) {
<FaEdit className={`text-base ${className}`} />
:name.toLowerCase() == 'settings' ?
<IoMdSettings className={`text-base ${className}`} />
:name.toLowerCase() == 'message' ?
<LuMessageSquareText className={`text-base ${className}`} />
:name.toLowerCase() == 'right-panel' ?
<LuPanelRight className={`text-base ${className}`} />
:
null
}