We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cba748 commit 5cc5933Copy full SHA for 5cc5933
src/components/fields/ComboBox/ComboBox.tsx
@@ -60,7 +60,6 @@ const InputElement = tasty({
60
61
const TriggerElement = tasty({
62
as: 'button',
63
- icon: <DownIcon />,
64
type: 'neutral',
65
styles: {
66
display: 'grid',
@@ -441,7 +440,9 @@ export const ComboBox = forwardRef(function ComboBox<T extends object>(
441
440
data-size={size}
442
isDisabled={isDisabled}
443
styles={triggerStyles}
444
- />
+ >
+ <DownIcon />
445
+ </TriggerElement>
446
) : null}
447
</div>
448
<OverlayWrapper isOpen={state.isOpen && !isDisabled}>
0 commit comments