Added libs
This commit is contained in:
12
vueNoSys/src/components/labels/Label.vue
Normal file
12
vueNoSys/src/components/labels/Label.vue
Normal file
@@ -0,0 +1,12 @@
|
||||
<template>
|
||||
<label :for="forId" :class="['block text-sm font-medium text-gray-700 dark:text-gray-300', className]">
|
||||
<slot></slot>
|
||||
</label>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineProps({
|
||||
forId: String,
|
||||
className: String
|
||||
})
|
||||
</script>
|
||||
Reference in New Issue
Block a user