Web: components: add Apps icon

This commit is contained in:
DASenkiv 2019-06-26 16:58:16 +03:00
parent ef65404875
commit 99707c0081
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,9 @@
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.62496 1H8.38577C9.28193 1 10.0107 1.72875 10.0107 2.62496V8.37504C10.0107 9.27125 9.28193 10 8.38577 10H2.62496C1.72875 10 1 9.27121 1 8.37504V2.62496C1 1.72875 1.72875 1 2.62496 1ZM13.6201 1H19.3848C20.281 1 21.0098 1.72875 21.0098 2.62496V8.37504C21.0098 9.27125 20.281 10 19.3848 10H13.6201C12.7238 10 11.9951 9.27121 11.9951 8.37504V2.62496C11.9951 1.72875 12.7238 1 13.6201 1ZM8.36842 12.0148H2.62496C1.72875 12.0148 1 12.7436 1 13.6398V19.3614C1 20.2576 1.72875 20.9863 2.62496 20.9863H8.36842C9.26459 20.9863 9.99338 20.2576 9.99338 19.3614V13.6398C9.99334 12.7436 9.26459 12.0148 8.36842 12.0148ZM17.9867 15.9949H19.5382C19.7905 15.9949 19.9947 16.1991 19.9947 16.4514V17.5439C19.9947 17.7962 19.7905 18.0004 19.5382 18.0004H17.9867V19.5315C17.9867 19.7838 17.7825 19.988 17.5302 19.988H16.4481C16.1958 19.988 15.9916 19.7838 15.9916 19.5315V18.0004H14.4484C14.1961 18.0004 13.9919 17.7962 13.9919 17.5439V16.4514C13.9919 16.1991 14.1961 15.9949 14.4484 15.9949H15.9916V14.4536C15.9916 14.2013 16.1958 13.9971 16.4481 13.9971H17.5302C17.7825 13.9971 17.9867 14.2013 17.9867 14.4536V15.9949Z" fill="#ECEEF1"/>
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="1" y="1" width="21" height="20">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.62496 1H8.38577C9.28193 1 10.0107 1.72875 10.0107 2.62496V8.37504C10.0107 9.27125 9.28193 10 8.38577 10H2.62496C1.72875 10 1 9.27121 1 8.37504V2.62496C1 1.72875 1.72875 1 2.62496 1ZM13.6201 1H19.3848C20.281 1 21.0098 1.72875 21.0098 2.62496V8.37504C21.0098 9.27125 20.281 10 19.3848 10H13.6201C12.7238 10 11.9951 9.27121 11.9951 8.37504V2.62496C11.9951 1.72875 12.7238 1 13.6201 1ZM8.36842 12.0148H2.62496C1.72875 12.0148 1 12.7436 1 13.6398V19.3614C1 20.2576 1.72875 20.9863 2.62496 20.9863H8.36842C9.26459 20.9863 9.99338 20.2576 9.99338 19.3614V13.6398C9.99334 12.7436 9.26459 12.0148 8.36842 12.0148ZM17.9867 15.9949H19.5382C19.7905 15.9949 19.9947 16.1991 19.9947 16.4514V17.5439C19.9947 17.7962 19.7905 18.0004 19.5382 18.0004H17.9867V19.5315C17.9867 19.7838 17.7825 19.988 17.5302 19.988H16.4481C16.1958 19.988 15.9916 19.7838 15.9916 19.5315V18.0004H14.4484C14.1961 18.0004 13.9919 17.7962 13.9919 17.5439V16.4514C13.9919 16.1991 14.1961 15.9949 14.4484 15.9949H15.9916V14.4536C15.9916 14.2013 16.1958 13.9971 16.4481 13.9971H17.5302C17.7825 13.9971 17.9867 14.2013 17.9867 14.4536V15.9949Z" fill="white"/>
</mask>
<g mask="url(#mask0)">
<rect width="22" height="22" fill="#D0D5DA"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -18,6 +18,7 @@ import OrigCloudServicesOneDriveIcon from './cloud.services.onedrive.react.svg';
import OrigCloudServicesBoxIcon from './cloud.services.box.react.svg';
import OrigCloudServicesNextcloudIcon from './cloud.services.nextcloud.react.svg';
import OrigCommunityIcon from './community.react.svg';
import OrigAppsIcon from './apps.react.svg';
export const PeopleIcon = createStyledIcon(
@ -95,4 +96,8 @@ export const CloudServicesNextcloudIcon = createStyledIcon(
export const CommunityIcon = createStyledIcon(
OrigCommunityIcon,
'CommunityIcon'
);
);
export const AppsIcon = createStyledIcon(
OrigAppsIcon,
'AppsIcon'
);