From 45373f655f68fdd0b320cde175b6108454ad4731 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 17 Jul 2021 20:32:22 +0530 Subject: Removed Franz paid plans features: - serviceLimit - planSelection - trialStatusBar and other Franz features that were for different tiers of subscription. --- .../trialStatusBar/components/ProgressBar.js | 45 ---------------------- 1 file changed, 45 deletions(-) delete mode 100644 src/features/trialStatusBar/components/ProgressBar.js (limited to 'src/features/trialStatusBar/components/ProgressBar.js') diff --git a/src/features/trialStatusBar/components/ProgressBar.js b/src/features/trialStatusBar/components/ProgressBar.js deleted file mode 100644 index 41b74d396..000000000 --- a/src/features/trialStatusBar/components/ProgressBar.js +++ /dev/null @@ -1,45 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import { observer } from 'mobx-react'; -import injectSheet from 'react-jss'; - -const styles = theme => ({ - root: { - background: theme.trialStatusBar.progressBar.background, - width: '25%', - maxWidth: 200, - height: 8, - display: 'flex', - alignItems: 'center', - borderRadius: theme.borderRadius, - overflow: 'hidden', - }, - progress: { - background: theme.trialStatusBar.progressBar.progressIndicator, - width: ({ percent }) => `${percent}%`, - height: '100%', - }, -}); - -@injectSheet(styles) @observer -class ProgressBar extends Component { - static propTypes = { - classes: PropTypes.object.isRequired, - }; - - render() { - const { - classes, - } = this.props; - - return ( -
-
-
- ); - } -} - -export default ProgressBar; -- cgit v1.2.3-70-g09d2