Web: components: added AccessForm icon

This commit is contained in:
DASenkiv 2019-06-27 15:29:04 +03:00
parent aad0a75489
commit 6413f64de3
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="M2 0C0.895431 0 0 0.895431 0 2V14C0 15.1046 0.895431 16 2 16H14C15.1046 16 16 15.1046 16 14V2C16 0.895431 15.1046 0 14 0H2ZM14 2H2V5H14V2ZM2 7H14V10H2V7ZM9 12C8.44772 12 8 12.4477 8 13C8 13.5523 8.44772 14 9 14H13C13.5523 14 14 13.5523 14 13C14 12.4477 13.5523 12 13 12H9Z" fill="#A3A9AE"/>
</svg>

After

Width:  |  Height:  |  Size: 443 B

View File

@ -67,6 +67,7 @@ import OrigShareFacebookIcon from './share.facebook.react.svg';
import OrigShareTwitterIcon from './share.twitter.react.svg';
import OrigAccessNoneIcon from './access.none.react.svg';
import OrigTimeTrackingNotBilledIcon from './time.tracking.not.billed.react.svg';
import OrigAccessFormIcon from './access.form.react.svg';
export const PeopleIcon = createStyledIcon(
@ -341,3 +342,7 @@ export const TimeTrackingNotBilledIcon = createStyledIcon(
OrigTimeTrackingNotBilledIcon,
'TimeTrackingNotBilledIcon'
);
export const AccessFormIcon = createStyledIcon(
OrigAccessFormIcon,
'AccessFormIcon'
);