type IconWithTextProps = { icon: string; text: string; desc: string; hoverTextColor?: string | null; }; export const IconWithText = ({ icon, text, desc, hoverTextColor, }: IconWithTextProps) => { return (
{text}
{desc}