%= bs5_button_toolbar(class: 'mb-3', aria: { label: 'Toolbar with button groups' }) do %>
<%= bs5_button_group(class: 'me-2', aria: { label: 'First group' }) do %>
<%= bs5_button_tag('1', type: 'button', outline: true, color: :secondary) %>
<%= bs5_button_tag('2', type: 'button', outline: true, color: :secondary) %>
<%= bs5_button_tag('3', type: 'button', outline: true, color: :secondary) %>
<%= bs5_button_tag('4', type: 'button', outline: true, color: :secondary) %>
<% end %>
<% end %>
<%= bs5_button_toolbar(class: 'justify-content-between', aria: { label: 'Toolbar with button groups' }) do %>
<%= bs5_button_group(aria: { label: 'First group' }) do %>
<%= bs5_button_tag('1', type: 'button', outline: true, color: :secondary) %>
<%= bs5_button_tag('2', type: 'button', outline: true, color: :secondary) %>
<%= bs5_button_tag('3', type: 'button', outline: true, color: :secondary) %>
<%= bs5_button_tag('4', type: 'button', outline: true, color: :secondary) %>
<% end %>
<% end %>