farmcontrol-ui/src/components/Icons/PersonGroupIcon.jsx
Tom Butcher de1bd53f53
All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good
Add User Groups and Permission Settings Management Components
- Introduced UserGroups and PermissionSettings components for managing user groups and permission settings.
- Implemented new icons for user groups and permission settings, enhancing visual representation in the dashboard.
- Updated routing and sidebar configuration to include new management sections for user groups and permission settings.
- Enhanced existing components with loading states and improved styling for better user experience.
- Refactored related components to ensure consistency in naming and functionality across the application.
2026-08-20 15:04:50 +01:00

7 lines
227 B
JavaScript

import Icon from '@ant-design/icons'
import CustomIconSvg from '../../../assets/icons/persongroupicon.svg?react'
const PersonGroupIcon = (props) => <Icon component={CustomIconSvg} {...props} />
export default PersonGroupIcon