type IconWithTextProps = { icon: string; text: string; desc: string; hoverTextColor?: string | null; }; export const IconWithText = ({ icon, text, desc, hoverTextColor, }: IconWithTextProps) => { return (
{/* eslint-disable-next-line @next/next/no-img-element */} {""}

{text}

{desc}

); };