M: Add pulse to remove item icon

This commit is contained in:
Ivan 2025-07-07 13:28:54 +03:00
parent 1260f159c9
commit d08d3432bc
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ export function ComboBox<Option>({
<IconRemove
tabIndex={-1}
size='1rem'
className='cc-remove absolute pointer-events-auto right-3'
className='cc-remove cc-hover-pulse absolute pointer-events-auto right-3'
onClick={handleClear}
/>
) : null}

View File

@ -100,7 +100,7 @@ export function ComboMulti<Option>({
<IconRemove
tabIndex={-1}
size='1rem'
className='cc-remove'
className='cc-remove cc-hover-pulse'
onClick={event => {
event.stopPropagation();
handleRemoveValue(item);