Web: components: added AZSorting icon

This commit is contained in:
DASenkiv 2019-06-28 14:28:42 +03:00
parent 17439e65cc
commit d510670adf
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,9 @@
<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 1C0 0.447715 0.447715 0 1 0H5C5.55228 0 6 0.447715 6 1C6 1.55228 5.55228 2 5 2H1C0.447715 2 0 1.55228 0 1ZM0 5C0 4.44772 0.447715 4 1 4H7C7.55228 4 8 4.44772 8 5C8 5.55228 7.55228 6 7 6H1C0.447715 6 0 5.55228 0 5ZM1 8C0.447715 8 0 8.44771 0 9C0 9.55229 0.447715 10 1 10H9C9.55229 10 10 9.55229 10 9C10 8.44771 9.55228 8 9 8H1Z" fill="#A3A9AE"/>
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="10" height="10">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 1C0 0.447715 0.447715 0 1 0H5C5.55228 0 6 0.447715 6 1C6 1.55228 5.55228 2 5 2H1C0.447715 2 0 1.55228 0 1ZM0 5C0 4.44772 0.447715 4 1 4H7C7.55228 4 8 4.44772 8 5C8 5.55228 7.55228 6 7 6H1C0.447715 6 0 5.55228 0 5ZM1 8C0.447715 8 0 8.44771 0 9C0 9.55229 0.447715 10 1 10H9C9.55229 10 10 9.55229 10 9C10 8.44771 9.55228 8 9 8H1Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
<rect width="10" height="10" fill="#A3A9AE"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -104,6 +104,7 @@ import OrigFileActionsConvertEditDocIcon from './file.actions.convert.edit.doc.r
import OrigFileActionsConvertIcon from './file.actions.convert.react.svg';
import OrigReplyIcon from './reply.react.svg';
import OrigClipIcon from './clip.react.svg';
import OrigAZSortingIcon from './a-z.sorting.react.svg';
export const PeopleIcon = createStyledIcon(
@ -526,3 +527,7 @@ export const ClipIcon = createStyledIcon(
OrigClipIcon,
'ClipIcon'
);
export const AZSortingIcon = createStyledIcon(
OrigAZSortingIcon,
'AZSortingIcon'
);