Previews

No matching results.

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