import React from 'react' import NumberInput from '../shared/NumberInput' import SettingBlock from './SettingBlock' interface NumberInputSettingProps { title: string allowFloat?: boolean desc?: string value: string suffix?: string width?: number widthUnit?: string disable?: boolean onValue: (val: string) => void } function NumberInputSetting(props: NumberInputSettingProps) { const { title, allowFloat, desc, value, suffix, onValue, width, widthUnit, disable, } = props return ( {suffix && {suffix}} } /> ) } NumberInputSetting.defaultProps = { allowFloat: false, width: 80, widthUnit: 'px', disable: false, } export default NumberInputSetting