mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-31 18:17:23 +01:00
10 lines
210 B
Vue
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>
|