{hasChildren ? (
) : (
0 && "hover:bg-background-light-grey pl-10",
isActive && "bg-[#33bc9a]/20 font-medium"
)}
>
{!hasChildren && level > 0 &&
}
{item.icon && (
{item.icon}
)}
{item.label}
)}
{hasChildren && isExpanded && (
{item.children?.map((child) => renderMenuItem(child, level + 1))}
)}
);
};
return (