Files
2026-07-24 12:46:44 +05:30

13 lines
381 B
Plaintext

component Divider {
props {
size = "default"
color = "primary"
label = ""
orientation = "horizontal"
class = ""
}
view {
<div class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--divider wire-next--divider-{orientation} {class}" role="separator" aria-orientation="{orientation}">{#if label}<span>{label}</span>{/if}</div>
}
}