-
{this.props.getContent()}
- {this.hasTooltip() &&
{this.tooltip()}}
-
- );
- }
-}
diff --git a/src/ui/React/AutoupdatingStdButton.tsx b/src/ui/React/AutoupdatingStdButton.tsx
deleted file mode 100644
index 1382ee62b..000000000
--- a/src/ui/React/AutoupdatingStdButton.tsx
+++ /dev/null
@@ -1,80 +0,0 @@
-/**
- * Basic stateless button that automatically re-renders itself every X seconds
- * Uses the 'std-button' css class
- *
- * NOT recommended for usage - only if you really have to
- */
-import * as React from "react";
-
-interface IProps {
- label?: string;
- disabled?: boolean;
- intervalTime?: number;
- onClick?: (e: React.MouseEvent