+ navigate(action.path)}
+ style={{
+ fontSize: 20,
+ color: '#262626',
+ cursor: 'pointer',
+ padding: '4px 8px',
+ borderRadius: 4,
+ transition: 'all 0.3s ease',
+ }}
+ onMouseEnter={(e) => {
+ e.currentTarget.style.color = '#1890ff';
+ e.currentTarget.style.backgroundColor = 'rgba(24, 144, 255, 0.1)';
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.color = '#262626';
+ e.currentTarget.style.backgroundColor = 'transparent';
+ }}
+ >
+ {action.icon}
+
+
+ ))}
+