feat(kbd): add kbd component

This commit is contained in:
2024-11-24 21:00:14 +08:00
parent ab67a97ac9
commit 1f1647c4bc
6 changed files with 139 additions and 0 deletions

View File

@ -0,0 +1,50 @@
---
description: Display a keyboard keys such as shortcuts or hotkeys
since: 1.3.3
---
## Usage
Use the default slot to display the keyboard key.
::ComponentPreview
K
::
The `label` prop also can be used to do so.
::ComponentPreview
---
props:
label: K
---
::
### Sizes
The `size` prop changes the size of the `kbd`.
::ComponentPreview
---
props:
size: sm
---
K
::
### Shadow
Add a shadow to the `kbd`.
::ComponentPreview
---
props:
shadow: true
---
K
::
## Config
::ComponentDefaults
::