Web: components: added Eye icon

This commit is contained in:
DASenkiv 2019-06-28 15:53:14 +03:00
parent d4da8c3fca
commit df402d43ba
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="M8 3C4.94303 3 2.17081 4.7536 0.125192 7.60192C-0.0417306 7.83528 -0.0417306 8.16129 0.125192 8.39465C2.17081 11.2464 4.94303 13 8 13C11.057 13 13.8292 11.2464 15.8748 8.39808C16.0417 8.16472 16.0417 7.83871 15.8748 7.60535C13.8292 4.7536 11.057 3 8 3ZM8.21929 11.5209C6.19004 11.6548 4.51427 9.90117 4.64191 7.77008C4.74665 6.01304 6.10494 4.58888 7.78071 4.47907C9.80996 4.34523 11.4857 6.09883 11.3581 8.22992C11.2501 9.98353 9.89179 11.4077 8.21929 11.5209ZM8.11783 9.8943C7.02465 9.96637 6.1213 9.02265 6.19331 7.87646C6.24895 6.92931 6.9821 6.16404 7.88545 6.10226C8.97862 6.0302 9.88197 6.97392 9.80996 8.12011C9.75105 9.07069 9.0179 9.83596 8.11783 9.8943Z" fill="#A3A9AE"/>
</svg>

After

Width:  |  Height:  |  Size: 835 B

View File

@ -120,6 +120,7 @@ import OrigRectangleFilterIcon from './rectangle.filter.react.svg';
import OrigCatalogButtonIcon from './catalog.button.react.svg';
import OrigCrossIcon from './cross.react.svg';
import OrigCheckboxIcon from './checkbox.react.svg';
import OrigEyeIcon from './eye.react.svg';
export const PeopleIcon = createStyledIcon(
@ -606,3 +607,7 @@ export const CheckboxIcon = createStyledIcon(
OrigCheckboxIcon,
'CheckboxIcon'
);
export const EyeIcon = createStyledIcon(
OrigEyeIcon,
'EyeIcon'
);