v1.9.0 : add keyboard components

This commit is contained in:
Wildan Nursahidan
2025-05-19 22:20:53 +07:00
parent d66f37085a
commit 209a80d5e8
11 changed files with 302 additions and 3 deletions

23
.vscode/keyboard.code-snippets vendored Normal file
View File

@@ -0,0 +1,23 @@
{
"Keyboard - Mac": {
"prefix": "keymac",
"body": [
"<Kbd show=\"${1:ctrl}\" type=\"mac\" />"
],
"description": "Mac keyboard shortcut."
},
"Keyboard - Windows": {
"prefix": "keywin",
"body": [
"<Kbd show=\"${1:ctrl}\" type=\"windows\" />"
],
"description": "Windows keyboard shortcut."
},
"Keyboard - Custom": {
"prefix": "keycustom",
"body": [
"<Kbd show=\"${1:custom}\">${2:Custom}</Kbd>"
],
"description": "Custom keyboard shortcut."
}
}