UNPKG

@bigfishtv/cockpit

Version:

9 lines (7 loc) 275 B
import React, { Component } from 'react' export default class NumberInput extends Component { render() { const { invalid, value, ...inputProps } = this.props return <input type="number" value={value === null || value === undefined ? '' : value} {...inputProps} /> } }