Skip to content

Commit 27710c9

Browse files
committed
add cursor pointer to clear & dropdown indicator
1 parent 0ea4123 commit 27710c9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/Select/styles.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@ const defaultStyles = ({ size }) => ({
3939
...getBorderStyles(isFocused, isSelected),
4040
},
4141
}),
42-
dropdownIndicator: (styles) => ({ ...styles, color: systemColors.UX_GRAY_600 }),
42+
clearIndicator: (styles) => ({
43+
...styles,
44+
cursor: 'pointer',
45+
}),
46+
dropdownIndicator: (styles) => ({
47+
...styles,
48+
color: systemColors.UX_GRAY_600,
49+
cursor: 'pointer',
50+
}),
4351
indicatorSeparator: (styles) => ({ ...styles, display: 'none' }),
4452
multiValue: (styles) => ({
4553
...styles,

0 commit comments

Comments
 (0)