Skip to content

Commit

Permalink
icon update added
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabricevladimir committed Sep 11, 2023
1 parent 826df24 commit f1b8930
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- `ActionItemAddress` component
- `IconUpdate` component

### Changed

Expand Down
25 changes: 25 additions & 0 deletions src/components/icons/interface/icon_update.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from 'react';
import { type IconType } from '..';

export const IconUpdate: IconType = ({ height = 16, width = 16, ...props }) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<g id="_update">
<path
id="Icon"
fillRule="evenodd"
clipRule="evenodd"
d="M8.99993 1.00098C8.73475 1.00098 8.48043 1.10632 8.29292 1.29383C8.1054 1.48134 8.00006 1.73566 8.00006 2.00085C8.00006 2.26603 8.1054 2.52035 8.29292 2.70786C8.48043 2.89537 8.73475 3.00072 8.99993 3.00072H10.4997C10.6323 3.00072 10.7595 3.05339 10.8532 3.14714C10.947 3.2409 10.9997 3.36806 10.9997 3.50065V9.49987H9.49987C9.40086 9.4997 9.30403 9.52892 9.22165 9.58384C9.13927 9.63876 9.07506 9.71691 9.03714 9.80837C8.99923 9.89983 8.98933 10.0005 9.00869 10.0976C9.02806 10.1947 9.07582 10.2838 9.14591 10.3538L11.6456 12.8534C11.692 12.9 11.7472 12.9369 11.8079 12.9621C11.8687 12.9873 11.9338 13.0003 11.9995 13.0003C12.0653 13.0003 12.1304 12.9873 12.1912 12.9621C12.2519 12.9369 12.3071 12.9 12.3535 12.8534L14.8532 10.3538C14.9233 10.2838 14.971 10.1947 14.9904 10.0976C15.0098 10.0005 14.9999 9.89983 14.962 9.80837C14.924 9.71691 14.8598 9.63876 14.7774 9.58384C14.6951 9.52892 14.5982 9.4997 14.4992 9.49987H12.9994V3.50065C12.9994 2.8377 12.7361 2.20189 12.2673 1.73311C11.7985 1.26433 11.1627 1.00098 10.4997 1.00098L8.99993 1.00098ZM4.35453 3.1467C4.30809 3.10014 4.25292 3.0632 4.19218 3.038C4.13144 3.0128 4.06633 2.99982 4.00057 2.99982C3.93481 2.99982 3.8697 3.0128 3.80896 3.038C3.74823 3.0632 3.69306 3.10014 3.64662 3.1467L1.14694 5.64637C1.07684 5.71629 1.02908 5.80545 1.00972 5.90255C0.990352 5.99965 1.00025 6.10031 1.03817 6.19177C1.07608 6.28323 1.1403 6.36137 1.22267 6.41629C1.30505 6.47122 1.40188 6.50044 1.50089 6.50026H3.0007V12.4995C3.0007 13.1624 3.26406 13.7982 3.73284 14.267C4.20162 14.7358 4.83742 14.9992 5.50038 14.9992H7.00019C7.26537 14.9992 7.51969 14.8938 7.70721 14.7063C7.89472 14.5188 8.00006 14.2645 8.00006 13.9993C8.00006 13.7341 7.89472 13.4798 7.70721 13.2923C7.51969 13.1048 7.26537 12.9994 7.00019 12.9994H5.50038C5.36779 12.9994 5.24063 12.9467 5.14687 12.853C5.05312 12.7592 5.00044 12.6321 5.00044 12.4995V6.50026H6.50025C6.59926 6.50044 6.69609 6.47122 6.77847 6.41629C6.86085 6.36137 6.92507 6.28323 6.96298 6.19177C7.00089 6.10031 7.01079 5.99965 6.99143 5.90255C6.97206 5.80545 6.92431 5.71629 6.85421 5.64637L4.35453 3.1467Z"
fill="white"
/>
</g>
</svg>
);
};
1 change: 1 addition & 0 deletions src/components/icons/interface/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

0 comments on commit f1b8930

Please sign in to comment.