16 lines
419 B
Plaintext
16 lines
419 B
Plaintext
component Link {
|
|
props {
|
|
size = "default"
|
|
color = "primary"
|
|
label = "Link"
|
|
href = "#"
|
|
target = ""
|
|
rel = ""
|
|
external = false
|
|
class = ""
|
|
}
|
|
view {
|
|
<a {...attrs} href="{href}" target="{target}" rel="{rel}" class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--link {class}"><slot>{label}</slot>{#if external}<span aria-hidden="true">↗</span>{/if}</a>
|
|
}
|
|
}
|