12 lines
436 B
Plaintext
12 lines
436 B
Plaintext
component ContactSalesButton {
|
|
props {
|
|
label = "Action"
|
|
href = ""
|
|
type = "button"
|
|
variant = "primary"
|
|
disabled = false
|
|
class = ""
|
|
}
|
|
view { <span class="wire-catalog-action {class}"><a data-show="href" href="{href}" class="wire-btn wire-btn--{variant}">{label}<slot /></a><button data-show="!href" type="{type}" disabled="{disabled}" class="wire-btn wire-btn--{variant}">{label}<slot /></button></span> }
|
|
}
|