aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-slider/gas-slider.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/gas-customization/gas-slider/gas-slider.component.js')
-rw-r--r--ui/app/components/gas-customization/gas-slider/gas-slider.component.js48
1 files changed, 0 insertions, 48 deletions
diff --git a/ui/app/components/gas-customization/gas-slider/gas-slider.component.js b/ui/app/components/gas-customization/gas-slider/gas-slider.component.js
deleted file mode 100644
index 5836e7dfc..000000000
--- a/ui/app/components/gas-customization/gas-slider/gas-slider.component.js
+++ /dev/null
@@ -1,48 +0,0 @@
-import React, { Component } from 'react'
-import PropTypes from 'prop-types'
-
-export default class AdvancedTabContent extends Component {
- static propTypes = {
- onChange: PropTypes.func,
- lowLabel: PropTypes.string,
- highLabel: PropTypes.string,
- value: PropTypes.number,
- step: PropTypes.number,
- max: PropTypes.number,
- min: PropTypes.number,
- }
-
- render () {
- const {
- onChange,
- lowLabel,
- highLabel,
- value,
- step,
- max,
- min,
- } = this.props
-
- return (
- <div className="gas-slider">
- <input
- className="gas-slider__input"
- type="range"
- step={step}
- max={max}
- min={min}
- value={value}
- id="gasSlider"
- onChange={event => onChange(event.target.value)}
- />
- <div className="gas-slider__bar">
- <div className="gas-slider__colored"/>
- </div>
- <div className="gas-slider__labels">
- <span>{lowLabel}</span>
- <span>{highLabel}</span>
- </div>
- </div>
- )
- }
-}