Web: components: added CatalogTrash icon

This commit is contained in:
DASenkiv 2019-06-27 15:56:46 +03:00
parent 439f7da6d3
commit d147d7c140
2 changed files with 8 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="M1 3C1 2.44772 1.44772 2 2 2H4.99615L5.00192 0.99426C5.00508 0.444224 5.45186 0 6.00191 0H8.99514C9.54743 0 9.99514 0.447715 9.99514 1V2H13C13.5523 2 14 2.44772 14 3C14 3.55228 13.5523 4 13 4H2C1.44772 4 1 3.55228 1 3ZM2 5H2.03355H12.9665C12.9832 5 13 15.0909 13 15.0909C13 15.5909 12.5471 16 11.9935 16H3.00645C2.4529 16 2 15.5909 2 15.0909V5ZM5 7H4V14H5V7ZM7 7H8V14H7V7ZM11 7H10V14H11V7ZM9 1H6V2H9V1Z" fill="#657077"/>
</svg>

After

Width:  |  Height:  |  Size: 573 B

View File

@ -77,6 +77,7 @@ import OrigCatalogTagIcon from './catalog.tag.react.svg';
import OrigCatalogAccountsIcon from './catalog.accounts.react.svg';
import OrigCatalogContactsIcon from './catalog.contacts.react.svg';
import OrigActionsPresentationIcon from './actions.presentation.react.svg';
import OrigCatalogTrashIcon from './catalog.trash.react.svg';
export const PeopleIcon = createStyledIcon(
@ -391,3 +392,7 @@ export const ActionsPresentationIcon = createStyledIcon(
OrigActionsPresentationIcon,
'ActionsPresentationIcon'
);
export const CatalogTrashIcon = createStyledIcon(
OrigCatalogTrashIcon,
'CatalogTrashIcon'
);