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

{text}

{desc}

); };