Tom Butcher 088ef79b11 Add LoadingIcon Component with SVG Animation
- 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.
2026-09-02 19:02:30 +01:00

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