This repository has been archived on 2025-12-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2025-10-23 08:26:38 +02:00

18 lines
324 B
Vue

<script setup lang="ts">
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>