diff --git a/CHANGELOG.md b/CHANGELOG.md index 0070cc17b..65ad2d34e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - `ActionItemAddress` component +- `IconUpdate` component ### Changed diff --git a/src/components/icons/interface/icon_update.tsx b/src/components/icons/interface/icon_update.tsx new file mode 100644 index 000000000..be3a6149c --- /dev/null +++ b/src/components/icons/interface/icon_update.tsx @@ -0,0 +1,25 @@ +import React from 'react'; +import { type IconType } from '..'; + +export const IconUpdate: IconType = ({ height = 16, width = 16, ...props }) => { + return ( + + + + + + ); +}; diff --git a/src/components/icons/interface/index.ts b/src/components/icons/interface/index.ts index d2f540c97..11b7b9914 100644 --- a/src/components/icons/interface/index.ts +++ b/src/components/icons/interface/index.ts @@ -43,6 +43,7 @@ export { IconStorage } from './icon_storage'; export { IconSuccess } from './icon_success'; export { IconSwitch } from './icon_switch'; export { IconTurnOff } from './icon_turn_off'; +export { IconUpdate } from './icon_update'; export { IconWarning } from './icon_warning'; export { IconWithdraw } from './icon_withdraw'; export { IconRadioCancel } from './radio';