x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="Polaris-ButtonGroup"> <div class="Polaris-ButtonGroup__Item"><button type="button" data-controller="polaris-button" class="Polaris-Button"> <span class="Polaris-Button__Content"> <div class="Polaris-Button__Text"> Enable two-step authentication </div> </span> </button></div> <div class="Polaris-ButtonGroup__Item Polaris-ButtonGroup__Item--plain"><button type="button" data-controller="polaris-button" class="Polaris-Button Polaris-Button--plain"> <span class="Polaris-Button__Content"> <div class="Polaris-Button__Text"> Learn more </div> </span> </button></div></div>
1
2
3
4
<%= polaris_button_group do |group| %> <% group.with_button { "Enable two-step authentication" } %> <% group.with_button(plain: true) { "Learn more" } %><% end %>
No notes provided.
No params configured.