Linked Chip Depending on if the a element or the button element is being used, the proper HTML attributes should be passed.
Important Notes: Adding the href attribute will automatically change the chip tag to an anchor.
Demo
Light Theme Linked chip.
Dark Theme Linked chip.
Twig
{% include '@bolt-components-chip/chip.twig' with {
    content: 'Linked chip.',
    attributes: {
      href: 'https://google.com',
      target: '_blank',
      rel: 'noopener'
    }
  } only %}
HTML
<a href="https://google.com" target="_blank" rel="noopener" class="c-bolt-chip">
  Linked chip.
</a>