summaryrefslogtreecommitdiffstats
path: root/webapp/components/spinner_button.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/spinner_button.jsx')
-rw-r--r--webapp/components/spinner_button.jsx46
1 files changed, 0 insertions, 46 deletions
diff --git a/webapp/components/spinner_button.jsx b/webapp/components/spinner_button.jsx
deleted file mode 100644
index b3b291ff8..000000000
--- a/webapp/components/spinner_button.jsx
+++ /dev/null
@@ -1,46 +0,0 @@
-import PropTypes from 'prop-types';
-
-// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-
-import loadingGif from 'images/load.gif';
-
-export default class SpinnerButton extends React.Component {
- static get propTypes() {
- return {
- children: PropTypes.node,
- spinning: PropTypes.bool.isRequired,
- onClick: PropTypes.func
- };
- }
-
- static get defaultProps() {
- return {
- spinning: false
- };
- }
-
- render() {
- const {spinning, children, ...props} = this.props; // eslint-disable-line no-use-before-define
-
- if (spinning) {
- return (
- <img
- className='spinner-button__gif'
- src={loadingGif}
- />
- );
- }
-
- return (
- <button
- className='btn btn-primary'
- {...props}
- >
- {children}
- </button>
- );
- }
-}