Web: components: added AccessNone icon

This commit is contained in:
DASenkiv 2019-06-27 15:23:12 +03:00
parent 79d04cda31
commit 3e0151a281
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="M0 8C0 12.4183 3.58172 16 8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8ZM5.29071 12.5949C6.08473 13.0641 7.01092 13.3333 8 13.3333C10.9455 13.3333 13.3333 10.9455 13.3333 8C13.3333 7.01092 13.0641 6.08473 12.5949 5.29071L5.29071 12.5949ZM3.40509 10.7093C2.93591 9.91527 2.66667 8.98908 2.66667 8C2.66667 5.05448 5.05448 2.66667 8 2.66667C8.98908 2.66667 9.91527 2.93591 10.7093 3.40509L3.40509 10.7093Z" fill="#A3A9AE"/>
</svg>

After

Width:  |  Height:  |  Size: 608 B

View File

@ -65,6 +65,7 @@ import OrigShareGooglePlusIcon from './share.google.plus.react.svg';
import OrigSendClockIcon from './send.clock.react.svg'; import OrigSendClockIcon from './send.clock.react.svg';
import OrigShareFacebookIcon from './share.facebook.react.svg'; import OrigShareFacebookIcon from './share.facebook.react.svg';
import OrigShareTwitterIcon from './share.twitter.react.svg'; import OrigShareTwitterIcon from './share.twitter.react.svg';
import OrigAccessNoneIcon from './access.none.react.svg';
export const PeopleIcon = createStyledIcon( export const PeopleIcon = createStyledIcon(
@ -331,3 +332,7 @@ export const ShareTwitterIcon = createStyledIcon(
OrigShareTwitterIcon, OrigShareTwitterIcon,
'ShareTwitterIcon' 'ShareTwitterIcon'
); );
export const AccessNoneIcon = createStyledIcon(
OrigAccessNoneIcon,
'AccessNoneIcon'
);