- 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.
9 lines
245 B
JavaScript
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
|