summaryrefslogtreecommitdiffstatshomepage
path: root/webui/src/components/Button/GBButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'webui/src/components/Button/GBButton.tsx')
-rw-r--r--webui/src/components/Button/GBButton.tsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/webui/src/components/Button/GBButton.tsx b/webui/src/components/Button/GBButton.tsx
deleted file mode 100644
index fcbff7a03..000000000
--- a/webui/src/components/Button/GBButton.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import React from 'react';
-import { Link } from 'react-router-dom';
-
-import './GBButton.css';
-
-interface GBButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
- to: string;
- text: string;
-}
-
-/**
- * Standard button for issue actions
- */
-const GBButton: React.FC<GBButtonProps> = (props) => {
- return (
- <Link to={props.to} className="bt-issue">
- {props.text}
- </Link>
- );
-};
-
-export default GBButton;