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.
This commit is contained in:
Tom Butcher 2026-07-20 02:10:15 +01:00
parent c0a6968045
commit 830cf5224a

View File

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