started layout adjusting

This commit was merged in pull request #2.
This commit is contained in:
victorAnumudu
2025-04-06 02:24:29 +01:00
parent 4d89908200
commit 9520b2e851
15 changed files with 448 additions and 140 deletions
+4
View File
@@ -5,6 +5,8 @@ import { FaEye, FaRegMoneyBill1 } from 'react-icons/fa6'
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";
export default function Icons({name, className}) {
return (
@@ -29,6 +31,8 @@ export default function Icons({name, className}) {
<TbPlayerTrackPrev className={`text-base ${className}`} />
:name.toLowerCase() == 'edit' ?
<FaEdit className={`text-base ${className}`} />
:name.toLowerCase() == 'settings' ?
<IoMdSettings className={`text-base ${className}`} />
:
null
}