Some checks failed
farmcontrol/farmcontrol-ui/pipeline/head There was a failure building this commit
- 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.
9 lines
242 B
JavaScript
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
|