aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/customize-gas-modal/gas-modal-card.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/customize-gas-modal/gas-modal-card.js')
-rw-r--r--ui/app/components/customize-gas-modal/gas-modal-card.js54
1 files changed, 0 insertions, 54 deletions
diff --git a/ui/app/components/customize-gas-modal/gas-modal-card.js b/ui/app/components/customize-gas-modal/gas-modal-card.js
deleted file mode 100644
index 23754d819..000000000
--- a/ui/app/components/customize-gas-modal/gas-modal-card.js
+++ /dev/null
@@ -1,54 +0,0 @@
-const Component = require('react').Component
-const h = require('react-hyperscript')
-const inherits = require('util').inherits
-const InputNumber = require('../input-number.js')
-// const GasSlider = require('./gas-slider.js')
-
-module.exports = GasModalCard
-
-inherits(GasModalCard, Component)
-function GasModalCard () {
- Component.call(this)
-}
-
-GasModalCard.prototype.render = function () {
- const {
- // memo,
- onChange,
- unitLabel,
- value,
- min,
- // max,
- step,
- title,
- copy,
- } = this.props
-
- return h('div.send-v2__gas-modal-card', [
-
- h('div.send-v2__gas-modal-card__title', {}, title),
-
- h('div.send-v2__gas-modal-card__copy', {}, copy),
-
- h(InputNumber, {
- unitLabel,
- step,
- // max,
- min,
- placeholder: '0',
- value,
- onChange,
- }),
-
- // h(GasSlider, {
- // value,
- // step,
- // max,
- // min,
- // onChange,
- // }),
-
- ])
-
-}
-