13 lines
381 B
Plaintext
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>
|
|
}
|
|
}
|