aria-label
is required to render the button text. For example: <button type="button" class="e-bolt-button e-bolt-button--icon-only" aria-label="Download">
. Text should not be used inside the button when using aria-label
.<span class="e-bolt-button__icon-center">
is required to wrap around the icon markup. The wrapper ensures that the icon will always center within the button.// Icon only button combined with tooltip
{% set icon_download %}
{% include '@bolt-elements-icon/icon.twig' with {
name: 'download',
} only %}
{% endset %}
{% set tooltip_trigger %}
{% include '@bolt-elements-button/button.twig' with {
content: 'Download',
icon_only: icon_download,
attributes: {
type: 'button'
}
} only %}
{% endset %}
{% include '@bolt-components-tooltip/tooltip.twig' with {
trigger: tooltip_trigger,
content: 'File size: 25MB',
} only %}
// Icon only button combined with tooltip
<bolt-tooltip>
<button type="button" class="e-bolt-button e-bolt-button--icon-only" aria-label="Download">
<span class="e-bolt-button__icon-center"><bolt-icon name="download"></bolt-icon></span>
</button>
<span slot="content">File size: 25MB</span>
</bolt-tooltip>