import { FaCaretDown, FaCaretRight } from "react-icons/fa";
import dashIcon from "../../assets/images/dashboard/dashDefault.svg";
type Props = {
name: string;
fillColor?: string;
className?:string;
};
export default function Icons({ name, fillColor, className }: Props) {
return (
<>
{name == "home" ? (
) : name == "profile" ? (
) : name == "verification" ? (
) : name == "payments" ? (
) : name == "legals" ? (
) : name == "arrow" ? (
) : name == "greater-than" ? (
) :name == 'arrow-down'?
:name == 'arrow-right'?
:name == "dash-icon" ? (
) : null}
>
);
}