From 830cf5224ab6a30a1b7e4f80fb4f20926b5daf37 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Mon, 20 Jul 2026 02:10:15 +0100 Subject: [PATCH] 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. --- src/components/Icons/FilamentProfileIcon.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/components/Icons/FilamentProfileIcon.jsx diff --git a/src/components/Icons/FilamentProfileIcon.jsx b/src/components/Icons/FilamentProfileIcon.jsx new file mode 100644 index 0000000..a8f77f9 --- /dev/null +++ b/src/components/Icons/FilamentProfileIcon.jsx @@ -0,0 +1,8 @@ +import Icon from '@ant-design/icons' +import CustomIconSvg from '../../../assets/icons/filamentprofileicon.svg?react' + +const FilamentProfileIcon = (props) => ( + +) + +export default FilamentProfileIcon