ultrawidify/src/ui/components/VideoSettings/components/ShortcutButton.vue

23 lines
512 B
Vue
Raw Normal View History

<template>
2025-12-10 22:10:40 +01:00
<button class="flex flex-col min-h-[3rem] justify-center items-center" :class="classList">
<div class="flex justify-self-center">
{{label}}
</div>
<div class="-mt-2 font-[0.8em] flex justify-self-center text-stone-500">
{{shortcut ? `(${shortcut})` : ''}}
</div>
</button>
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
props: {
label: String,
shortcut: String,
classList: String
}
});
</script>