2025-10-23 08:26:38 +02:00
|
|
|
<script setup lang="ts">
|
2025-10-20 08:57:51 +02:00
|
|
|
import type { HTMLAttributes } from "vue"
|
|
|
|
|
import { cn } from "@/lib/utils"
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"]
|
|
|
|
|
}>()
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<kbd
|
|
|
|
|
data-slot="kbd-group"
|
|
|
|
|
:class="cn('inline-flex items-center gap-1', props.class)"
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</kbd>
|
|
|
|
|
</template>
|