fix: add 'no-spinner' class to InputNumber component for better styling

This commit is contained in:
twwu 2025-07-18 13:42:05 +08:00
parent 633bfc25e0
commit 399866e0ac
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ export const InputNumber: FC<InputNumberProps> = (props) => {
<Input {...rest}
// disable default controller
type='number'
className={classNames('rounded-r-none', className)}
className={classNames('no-spinner rounded-r-none', className)}
value={value ?? 0}
max={max}
min={min}