Web: components: added CreateFolder icon

This commit is contained in:
DASenkiv 2019-06-27 09:38:39 +03:00
parent 37a3d2efa0
commit b0489249bd
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="M6.09362 1H1.09424C0.540703 1 0.0924724 1.44967 0.0942435 2.0032L0.13264 14.0032C0.134403 14.5542 0.5816 15 1.13264 15H15.0918C15.6441 15 16.0918 14.5523 16.0918 14V4.99571C16.0918 4.44342 15.6441 3.99571 15.0918 3.99571H9.0913L6.09362 1ZM5.09412 3H3.09552C2.54149 3 2.09305 3.45045 2.09553 4.00448L2.13137 12.0045C2.13384 12.555 2.58082 13 3.13136 13H13.0918C13.6441 13 14.0918 12.5523 14.0918 12V6.99571C14.0918 6.44342 13.6441 5.99571 13.0918 5.99571H8.0918L5.09412 3Z" fill="#657077"/>
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="1" width="17" height="14">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.09362 1H1.09424C0.540703 1 0.0924724 1.44967 0.0942435 2.0032L0.13264 14.0032C0.134403 14.5542 0.5816 15 1.13264 15H15.0918C15.6441 15 16.0918 14.5523 16.0918 14V4.99571C16.0918 4.44342 15.6441 3.99571 15.0918 3.99571H9.0913L6.09362 1ZM5.09412 3H3.09552C2.54149 3 2.09305 3.45045 2.09553 4.00448L2.13137 12.0045C2.13384 12.555 2.58082 13 3.13136 13H13.0918C13.6441 13 14.0918 12.5523 14.0918 12V6.99571C14.0918 6.44342 13.6441 5.99571 13.0918 5.99571H8.0918L5.09412 3Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -40,6 +40,7 @@ import OrigCatalogPortfolioIcon from './catalog.portfolio.react.svg';
import OrigActionsDocumentsIcon from './actions.documents.react.svg';
import OrigAccessEditIcon from './access.edit.react.svg';
import OrigCatalogFolderIcon from './catalog.folder.react.svg';
import OrigCreateFolderIcon from './catalog.create.folder.react.svg';
export const PeopleIcon = createStyledIcon(
@ -206,3 +207,7 @@ export const CatalogFolderIcon = createStyledIcon(
OrigCatalogFolderIcon,
'CatalogFolderIcon'
);
export const CreateFolderIcon = createStyledIcon(
OrigCreateFolderIcon,
'CreateFolderIcon'
);