Skip to content

Commit 723fd22

Browse files
josercarcamobenelan
authored andcommitted
feat(combobox-item): update selection icons (#11726)
**Related Issue:** #10580 ## Summary Updated selection icons
1 parent 5be3369 commit 723fd22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/calcite-components/src/components/combobox-item/combobox-item.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ export class ComboboxItem extends LitElement implements InteractiveComponent {
279279
shortHeading,
280280
} = this;
281281
const isSingleSelect = isSingleLike(this.selectionMode);
282-
const icon = disabled || isSingleSelect ? undefined : "check";
283-
const selectionIcon = isSingleSelect ? "bullet-point" : "check";
282+
const icon = disabled || isSingleSelect ? undefined : "check-square-f";
283+
const selectionIcon = isSingleSelect ? "circle-inset-large" : "check-square-f";
284284
const headingText = heading || textLabel;
285285
const itemLabel = label || value;
286286

0 commit comments

Comments
 (0)