Skip to content

Commit c11e616

Browse files
fix: use eye icon for preview (#1873)
1 parent ae8aa6d commit c11e616

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/containers/Tenant/utils/controls.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import {LayoutHeaderCellsLargeFill} from '@gravity-ui/icons';
21
import type {ButtonSize} from '@gravity-ui/uikit';
32
import {Button, Icon} from '@gravity-ui/uikit';
43
import type {NavigationTreeNodeType, NavigationTreeProps} from 'ydb-ui-components';
@@ -9,6 +8,8 @@ import {TENANT_PAGES_IDS, TENANT_QUERY_TABS_ID} from '../../../store/reducers/te
98
import {setQueryTab, setTenantPage} from '../../../store/reducers/tenant/tenant';
109
import i18n from '../i18n';
1110

11+
import EyeIcon from '@gravity-ui/icons/svgs/eye.svg';
12+
1213
interface ControlsAdditionalEffects {
1314
setActivePath: (path: string) => void;
1415
}
@@ -43,7 +44,7 @@ const getPreviewControl = (options: ReturnType<typeof bindActions>, size?: Butto
4344
title={i18n('actions.openPreview')}
4445
size={size || 's'}
4546
>
46-
<Icon data={LayoutHeaderCellsLargeFill} />
47+
<Icon data={EyeIcon} />
4748
</Button>
4849
);
4950
};

0 commit comments

Comments
 (0)