Web: components: added CatalogSent icon

This commit is contained in:
DASenkiv 2019-06-27 11:27:59 +03:00
parent e29ec6c344
commit d9777399ff
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.9359 0.0651349C15.8205 -0.0151818 15.6695 -0.0215325 15.5478 0.047815L0.275059 7.80281C0.150423 7.87355 0.0793775 8.01082 0.0935934 8.15304C0.107809 8.29527 0.204389 8.4159 0.340411 8.46083L4.90122 9.97516L6.65928 14.7623C6.71219 14.9063 6.84961 15 7.00053 15C7.01437 15 7.02859 14.9993 7.04243 14.9975C7.14068 14.9863 7.22335 14.9336 7.28178 14.8606L9.87252 11.6261L13.4313 12.8078C13.4689 12.8205 13.5077 12.8265 13.5464 12.8265C13.6117 12.8265 13.6767 12.8088 13.7338 12.7745C13.8251 12.7201 13.8876 12.6284 13.905 12.5237L16.0868 0.421789C16.1099 0.283739 16.0513 0.145078 15.9359 0.0651349ZM7.68141 10.2123C7.64471 10.2617 7.62128 10.3194 7.61397 10.3802L7.29067 13L6.0918 9.76066L13.0918 3L7.68141 10.2123Z" fill="#657077"/>
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="17" height="15">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.9359 0.0651349C15.8205 -0.0151818 15.6695 -0.0215325 15.5478 0.047815L0.275059 7.80281C0.150423 7.87355 0.0793775 8.01082 0.0935934 8.15304C0.107809 8.29527 0.204389 8.4159 0.340411 8.46083L4.90122 9.97516L6.65928 14.7623C6.71219 14.9063 6.84961 15 7.00053 15C7.01437 15 7.02859 14.9993 7.04243 14.9975C7.14068 14.9863 7.22335 14.9336 7.28178 14.8606L9.87252 11.6261L13.4313 12.8078C13.4689 12.8205 13.5077 12.8265 13.5464 12.8265C13.6117 12.8265 13.6767 12.8088 13.7338 12.7745C13.8251 12.7201 13.8876 12.6284 13.905 12.5237L16.0868 0.421789C16.1099 0.283739 16.0513 0.145078 15.9359 0.0651349ZM7.68141 10.2123C7.64471 10.2617 7.62128 10.3194 7.61397 10.3802L7.29067 13L6.0918 9.76066L13.0918 3L7.68141 10.2123Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -49,6 +49,7 @@ import OrigCameraIcon from './camera.react.svg';
import OrigCatalogArchiveIcon from './catalog.archive.react.svg';
import OrigCatalogDepartmentsIcon from './catalog.departments.react.svg';
import OrigCatalogInboxIcon from './catalog.inbox.react.svg';
import OrigCatalogSentIcon from './catalog.sent.react.svg';
export const PeopleIcon = createStyledIcon(
@ -251,3 +252,7 @@ export const CatalogInboxIcon = createStyledIcon(
OrigCatalogInboxIcon,
'CatalogInboxIcon'
);
export const CatalogSentIcon = createStyledIcon(
OrigCatalogSentIcon,
'CatalogSentIcon'
);