Files
WRNexusJS/packages/ui/components/Kbd.wrn
2026-08-01 01:09:58 +05:30

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> }
}