Button Chip When appropriate, a button element can use the chip style. For example, the chip performs a function such as opening a modal or popover. Demo
Light Theme
Dark Theme
Twig
{% include '@bolt-components-chip/chip.twig' with {
  content: 'Button Chip.',
  attributes: {
    type: 'button',
  }
} only %}
HTML
<button type="button" class="c-bolt-chip">
  Button Chip.
</button>