Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/containers/Tenant/utils/controls.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import {LayoutHeaderCellsLargeFill} from '@gravity-ui/icons';
import type {ButtonSize} from '@gravity-ui/uikit';
import {Button, Icon} from '@gravity-ui/uikit';
import type {NavigationTreeNodeType, NavigationTreeProps} from 'ydb-ui-components';
Expand All @@ -9,6 +8,8 @@ import {TENANT_PAGES_IDS, TENANT_QUERY_TABS_ID} from '../../../store/reducers/te
import {setQueryTab, setTenantPage} from '../../../store/reducers/tenant/tenant';
import i18n from '../i18n';

import EyeIcon from '@gravity-ui/icons/svgs/eye.svg';

interface ControlsAdditionalEffects {
setActivePath: (path: string) => void;
}
Expand Down Expand Up @@ -43,7 +44,7 @@ const getPreviewControl = (options: ReturnType<typeof bindActions>, size?: Butto
title={i18n('actions.openPreview')}
size={size || 's'}
>
<Icon data={LayoutHeaderCellsLargeFill} />
<Icon data={EyeIcon} />
</Button>
);
};
Expand Down
Loading