
3D Extruded Buildings & Urban Footprints
Real-world 3D building extrusions with dynamic sunlight shadows, terrain DEM elevations, and pitch/bearing camera controls.
kbduiInline keyboard-key indicator — renders a single key or shortcut in monospace with a subtle bordered chip.
Also available for React ->$pnpm dlx shadcn-vue@latest add https://uipkge.dev/r/vue/kbd.json$npx shadcn-vue@latest add https://uipkge.dev/r/vue/kbd.json$yarn dlx shadcn-vue@latest add https://uipkge.dev/r/vue/kbd.json$bunx shadcn-vue@latest add https://uipkge.dev/r/vue/kbd.jsonnpx shadcn-vue@latest add @uipkge/kbdInstalls to:app/components/ui/kbd/| Name | Type / Values | Default | Required |
|---|---|---|---|
class | HTMLAttributes['class'] | — | optional |
<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
const props = defineProps<{
class?: HTMLAttributes['class']
}>()
</script>
<template>
<kbd
data-uipkge
data-slot="kbd"
:class="
cn(
'bg-muted text-muted-foreground pointer-events-none inline-flex h-5 min-w-5 items-center justify-center gap-1 rounded border px-1.5 font-mono text-xs font-medium select-none',
props.class,
)
"
>
<slot />
</kbd>
</template>
export { default as Kbd } from './Kbd.vue'
Raw manifest:https://uipkge.dev/r/vue/kbd.json