farmcontrol-ui/src/components/Icons/FilamentProfileIcon.jsx
Tom Butcher 830cf5224a Add FilamentProfileIcon component for improved icon representation
- Introduced a new FilamentProfileIcon component that utilizes a custom SVG icon for better visual representation in the application.
- The component is designed to be reusable and integrates seamlessly with existing icon functionality.
2026-07-20 02:10:15 +01:00

9 lines
245 B
JavaScript

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