Skip to content

Commit d7b2a4b

Browse files
committed
fix: icon dimensions in control
1 parent ee1c60e commit d7b2a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shared/Components/SelectPicker/common.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const SelectPickerControl = ({ icon, ...props }: ControlProps & Pick<Sele
3232

3333
return (
3434
<components.Control {...props}>
35-
{icon && <div className="p-2 dc__no-shrink flex left">{icon}</div>}
35+
{icon && <div className="dc__no-shrink icon-dim-20 flex dc__fill-available-space">{icon}</div>}
3636
{children}
3737
</components.Control>
3838
)

0 commit comments

Comments
 (0)