import React from 'react' import NumberInput from '../shared/NumberInput' import SettingBlock from './SettingBlock' interface NumberInputSettingProps { title: string desc?: string value: string suffix?: string onValue: (val: string) => void } function NumberInputSetting(props: NumberInputSettingProps) { const { title, desc, value, suffix, onValue } = props return ( {suffix && {suffix}} } /> ) } export default NumberInputSetting