import { Field, Label, InputBox, } from '@rocket.chat/fuselage'; import React from 'react'; import { ResetSettingButton } from '../ResetSettingButton'; export function IntSettingInput({ _id, label, value, placeholder, readonly, autocomplete, disabled, onChangeValue, hasResetButton, onResetButtonClick, }) { const handleChange = (event) => { onChangeValue(parseInt(event.currentTarget.value, 10)); }; return <> ; }