Skip to content

Commit 743c4e7

Browse files
committed
fix: icon size
1 parent 8cb8036 commit 743c4e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Shared/Components/SelectPicker/common.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,14 @@ export const SelectPickerOption = (props: OptionProps<SelectPickerOptionType>) =
8484
<components.Option {...props}>
8585
<div className={`flex left ${showDescription ? 'top' : ''} dc__gap-8`}>
8686
{startIcon && (
87-
<div className="dc__no-shrink icon-dim-16 flex dc__fill-available-space">{startIcon}</div>
87+
<div className="dc__no-shrink icon-dim-20 flex dc__fill-available-space">{startIcon}</div>
8888
)}
8989
<div className="flex-grow-1">
9090
<h4 className="m-0 cn-9 fs-13 fw-4 lh-20 dc__truncate">{label}</h4>
9191
{/* Add support for custom ellipsis if required */}
9292
{showDescription && <p className="m-0 fs-12 fw-4 lh-18 cn-7 dc__truncate">{description}</p>}
9393
</div>
94-
{endIcon && <div className="dc__no-shrink icon-dim-16 flex dc__fill-available-space">{endIcon}</div>}
94+
{endIcon && <div className="dc__no-shrink icon-dim-20 flex dc__fill-available-space">{endIcon}</div>}
9595
</div>
9696
</components.Option>
9797
)

0 commit comments

Comments
 (0)