1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-31 18:17:23 +01:00
Files
dozzle/docs/src/components/KeyShortcut.vue
2023-02-28 13:10:24 -08:00

10 lines
210 B
Vue

<script setup lang="ts">
const { label } = $defineProps<{
label: string
}>()
</script>
<template>
<span border="rounded-lg light-50" bg="light-200" text="dark-200" p-1> {{ label }} </span>
</template>