16659: Added copy to clipboard button for the api token
[arvados-workbench2.git] / src / components / tree / tree.tsx
index 28833b85b8891b6ea85a59d5e4ce8b06fac46a58..41498fc0525f1aa7f38410f4ca9ace2efa1d874c 100644 (file)
@@ -7,7 +7,7 @@ import { List, ListItem, ListItemIcon, Collapse, Checkbox, Radio } from "@materi
 import { StyleRulesCallback, withStyles, WithStyles } from '@material-ui/core/styles';
 import { ReactElement } from "react";
 import CircularProgress from '@material-ui/core/CircularProgress';
-import * as classnames from "classnames";
+import classnames from "classnames";
 
 import { ArvadosTheme } from '~/common/custom-theme';
 import { SidePanelRightArrowIcon } from '../icon/icon';
@@ -79,8 +79,6 @@ export interface TreeItem<T> {
     selected?: boolean;
     status: TreeItemStatus;
     items?: Array<TreeItem<T>>;
-    itemCount?: number;
-    level?: number;
 }
 
 export interface TreeProps<T> {