import React from 'react' import { AiFillProduct, AiOutlineDashboard } from 'react-icons/ai' import { FaEdit } from 'react-icons/fa' 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"; import { LuMessageSquareText } from "react-icons/lu"; 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, FaFilter } from "react-icons/fa"; export default function Icons({name, className}) { return ( <> {name.toLowerCase() === 'dashboard' ? : name.toLowerCase() === 'money' ? :name.toLowerCase() === 'dot' ? :name.toLowerCase() === 'people' ? :name.toLowerCase() === 'product' ? :name.toLowerCase() === 'trash' ? :name.toLowerCase() === 'eye' ? :name.toLowerCase() === 'next' ? :name.toLowerCase() === 'prev' ? :name.toLowerCase() === 'edit' ? :name.toLowerCase() === 'settings' ? :name.toLowerCase() === 'message' ? :name.toLowerCase() === 'right-panel' ? :name.toLowerCase() === 'google' ? :name.toLowerCase() === 'apple' ? :name.toLowerCase() === 'sales' ? :name.toLowerCase() === 'arrow-right' ? :name.toLowerCase() === 'filter' ? : null } ) }