Pages

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!-- Basic -->
<button type="button" class="btn" data-testid="button-button">
Button
</button>
<!-- Primary -->
<button type="button" class="btn btn-primary" data-testid="button-button">
Button
</button>
<!-- Critical -->
<button type="button" class="btn btn-critical" data-testid="button-button">
Button
</button>
<!-- Text -->
<button type="button" class="btn btn-text" data-testid="button-button">
Button
</button>
1
2
3
4
5
6
7
8
9
10
11
# Basic
anchor_button("Button")
# Primary
anchor_button("Button", variant: :primary)
# Critical
anchor_button("Button", variant: :critical)
# Text
anchor_button("Button", variant: :text)