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