import type { ReactNode } from "react"; import { NavLink } from "@remix-run/react"; import { IoCall, IoKeypad, IoChatbubbles, IoSettings } from "react-icons/io5"; import clsx from "clsx"; export default function Footer() { return ( ); } type FooterLinkProps = { path: string; label: string; icon: ReactNode; }; function FooterLink({ path, label, icon }: FooterLinkProps) { return (
clsx("flex flex-col items-center", { "text-primary-500": isActive, "text-[#959595]": !isActive, }) } > {icon} {label}
); }