10 lines
274 B
Plaintext
10 lines
274 B
Plaintext
component Kbd {
|
|
props {
|
|
size: string = "default"
|
|
color: string = "primary"
|
|
label: string = "⌘ K"
|
|
class: string = ""
|
|
}
|
|
view { <kbd class="wire-next wire-next--color-{color} wire-next--size-{size} wire-next--kbd {class}"><slot>{label}</slot></kbd> }
|
|
}
|