We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be3369 commit 723fd22Copy full SHA for 723fd22
packages/calcite-components/src/components/combobox-item/combobox-item.tsx
@@ -279,8 +279,8 @@ export class ComboboxItem extends LitElement implements InteractiveComponent {
279
shortHeading,
280
} = this;
281
const isSingleSelect = isSingleLike(this.selectionMode);
282
- const icon = disabled || isSingleSelect ? undefined : "check";
283
- const selectionIcon = isSingleSelect ? "bullet-point" : "check";
+ const icon = disabled || isSingleSelect ? undefined : "check-square-f";
+ const selectionIcon = isSingleSelect ? "circle-inset-large" : "check-square-f";
284
const headingText = heading || textLabel;
285
const itemLabel = label || value;
286
0 commit comments