cd9db1563d
* improve mobile ui * general cleanup * cleanup, improvements * fix hydration mismatch
12 lines
233 B
Vue
12 lines
233 B
Vue
<template>
|
|
<RLabel :for="props.for" class="md:leading-[2.75rem]">
|
|
<slot />
|
|
</RLabel>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Label as RLabel } from 'radix-vue';
|
|
|
|
const props = defineProps<{ for: string }>();
|
|
</script>
|