19465: Removes unused code.
authorLucas Di Pentima <lucas.dipentima@curii.com>
Thu, 15 Sep 2022 13:20:40 +0000 (10:20 -0300)
committerLucas Di Pentima <lucas.dipentima@curii.com>
Thu, 15 Sep 2022 13:20:40 +0000 (10:20 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

src/components/icon/icon.tsx
src/components/multi-panel-view/multi-panel-view.tsx

index db6035975c2cf030bbed43302f38da58eb4f1e0b..289696c66979a9e6338d5a6a6d9b6526bf83c9b5 100644 (file)
@@ -171,8 +171,6 @@ export const SidePanelRightArrowIcon: IconType = (props) => <PlayArrow {...props
 export const TrashIcon: IconType = (props) => <Delete {...props} />;
 export const UserPanelIcon: IconType = (props) => <Person {...props} />;
 export const UsedByIcon: IconType = (props) => <Folder {...props} />;
-export const VisibleIcon: IconType = (props) => <Visibility {...props} />;
-export const InvisibleIcon: IconType = (props) => <VisibilityOff {...props} />;
 export const WorkflowIcon: IconType = (props) => <Code {...props} />;
 export const WarningIcon: IconType = (props) => <Warning style={{ color: '#fbc02d', height: '30px', width: '30px' }} {...props} />;
 export const Link: IconType = (props) => <LinkOutlined {...props} />;
index 9206811fe57405aa26e882554a0383eae0938d87..f4c3f3ba44f5624b83a0ebaf299239957d84263e 100644 (file)
@@ -15,7 +15,7 @@ import {
 import { GridProps } from '@material-ui/core/Grid';
 import { isArray } from 'lodash';
 import { DefaultView } from 'components/default-view/default-view';
-import { InfoIcon, InvisibleIcon, VisibleIcon } from 'components/icon/icon';
+import { InfoIcon } from 'components/icon/icon';
 import { ReactNodeArray } from 'prop-types';
 import classNames from 'classnames';