Skip to content

Commit 5cc5933

Browse files
committed
fix(ComboBox): trigger button
1 parent 9cba748 commit 5cc5933

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/fields/ComboBox/ComboBox.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ const InputElement = tasty({
6060

6161
const TriggerElement = tasty({
6262
as: 'button',
63-
icon: <DownIcon />,
6463
type: 'neutral',
6564
styles: {
6665
display: 'grid',
@@ -441,7 +440,9 @@ export const ComboBox = forwardRef(function ComboBox<T extends object>(
441440
data-size={size}
442441
isDisabled={isDisabled}
443442
styles={triggerStyles}
444-
/>
443+
>
444+
<DownIcon />
445+
</TriggerElement>
445446
) : null}
446447
</div>
447448
<OverlayWrapper isOpen={state.isOpen && !isDisabled}>

0 commit comments

Comments
 (0)