- Introduced a new LoadingIcon component that utilizes an SVG for a rotating loading animation. - Added loadingicon.svg file to assets/icons for the visual representation of the loading state. - Integrated the LoadingIcon component into the project for enhanced user experience during loading processes.
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/loadingicon.svg?react'
|
|
|
|
const LoadingIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
|
|
|
export default LoadingIcon
|