Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
<div class="on-off-status-cell">
<span class="on-off-status -enabled">
<i class="icon-yes" aria-hidden="true"></i>
Is enabled
</span>
<p>
Text when enabled
</p>
</div>
1
2
3
4
5
6
7
render ::Components::OnOffStatusComponent.new({
is_on: true,
on_text: "Is enabled",
on_description: "Text when enabled",
off_text: "Is disabled",
off_description: "Text when disabled"
})