- {filteredMenuItems[0]?.label}
- {
- e.stopPropagation();
- toggleCollapse();
- }}
- style={{
- cursor: 'pointer',
- padding: '8px 12px',
- borderRadius: '4px',
- display: 'flex',
- alignItems: 'center',
- justifyContent: 'center',
- fontSize: '12px',
- color: '#888',
- transition: 'all 0.2s',
- marginLeft: '8px',
- marginRight: '-8px',
- }}
- onMouseEnter={(e) => {
- e.currentTarget.style.background = 'rgba(0, 0, 0, 0.04)';
- e.currentTarget.style.color = '#666';
- }}
- onMouseLeave={(e) => {
- e.currentTarget.style.background = 'transparent';
- e.currentTarget.style.color = '#888';
- }}
- title="Collapse navigation sidebar"
- >
-
-
-