Chip with Icon Only Icon only chip visually hides the text content of the chip. Such a chip should be used sparingly and only in places where screen real estate is a concern.
Important Notes: If the intent is for the icon_only chip to be used as a button or link, it is reccomended to to be used in tandem with tooltip as shown in the Icon Only Button documentation.
Demo
Twig
// icon var
{% set icon_info_open %}
  {% include '@bolt-elements-icon/icon.twig' with {
    name: 'info-circle',
  } only %}
{% endset %}

// chip include
{% include '@bolt-components-chip/chip.twig' with {
  content: 'Chip Icon',
  icon_only: icon_info_open,
} only %}
HTML
<div class="c-bolt-chip c-bolt-chip--icon-only" aria-label="Chip Icon">
  <span class="c-bolt-chip__icon-center"><!-- Icon or image markup --></span>
</div>