farmcontrol-ui/src/components/Icons/SoftwareUpdateIcon.jsx
Tom Butcher e6760d3dfc
Some checks failed
farmcontrol/farmcontrol-ui/pipeline/head There was a failure building this commit
Add SoftwareUpdateIcon component and integrate into About and AppUpdateProgress
- Created SoftwareUpdateIcon component using SVG for software update representation.
- Replaced DownloadIcon with SoftwareUpdateIcon in the About component's update actions for better visual context.
- Enhanced AppUpdateProgress modal title with SoftwareUpdateIcon for improved user interface clarity.
- Updated imports and styling in relevant components to accommodate the new icon.
2026-08-01 16:40:33 +01:00

9 lines
242 B
JavaScript

import Icon from '@ant-design/icons'
import CustomIconSvg from '../../../assets/icons/softwareupdateicon.svg?react'
const SoftwareUpdateIcon = (props) => (
<Icon component={CustomIconSvg} {...props} />
)
export default SoftwareUpdateIcon