fix(color-picker): In disabled state, cursor is no-allowed (#50217)

This commit is contained in:
ice 2024-08-03 16:42:19 +08:00 committed by GitHub
parent 14a9449de9
commit f4b585af5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ const genClearStyle = (
border: `${unit(lineWidth)} solid ${colorSplit}`,
position: 'relative',
overflow: 'hidden',
cursor: 'pointer',
cursor: 'inherit',
transition: `all ${token.motionDurationFast}`,
...extraStyle,