12 lines
260 B
Vue
12 lines
260 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
for?: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<label :for="for" class="text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70 text-white">
|
|
<slot />
|
|
</label>
|
|
</template>
|