Add "Recent" icon.

This commit is contained in:
Vladislav Makhov 2020-10-07 13:59:03 +03:00
parent 4e6280804e
commit df482665d7
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15ZM7 4C7 3.44772 7.44772 3 8 3C8.55228 3 9 3.44772 9 4V7H11C11.5523 7 12 7.44772 12 8C12 8.55228 11.5523 9 11 9H9H8C7.44772 9 7 8.55228 7 8V7V4Z" fill="#657077"/>
</svg>

After

Width:  |  Height:  |  Size: 417 B

View File

@ -190,6 +190,8 @@ import OrigFlipVertical from "./flip.vertical.react.svg";
import OrigRotateLeft from "./rotate.left.react.svg"; import OrigRotateLeft from "./rotate.left.react.svg";
import OrigRotateRight from "./rotate.right.react.svg"; import OrigRotateRight from "./rotate.right.react.svg";
import OrigRecentIcon from "./catalog.recent.react.svg";
export const AZSortingIcon = createStyledIcon( export const AZSortingIcon = createStyledIcon(
OrigAZSortingIcon, OrigAZSortingIcon,
"AZSortingIcon" "AZSortingIcon"
@ -736,3 +738,7 @@ export const RotateRightIcon = createStyledIcon(
OrigRotateRight, OrigRotateRight,
"RotateRightIcon" "RotateRightIcon"
); );
export const CatalogRecentIcon = createStyledIcon(
OrigRecentIcon,
"CatalogRecentIcon"
);