mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
--------- Co-authored-by: Pranav <pranavrajs@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com>
60 lines
1.2 KiB
Vue
60 lines
1.2 KiB
Vue
<script>
|
|
export default {
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
hasError: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
errorMessage: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="space-y-1">
|
|
<label
|
|
v-if="label"
|
|
:for="name"
|
|
class="flex justify-between text-sm font-medium leading-6 text-slate-900 dark:text-white"
|
|
:class="{ 'text-red-500': hasError }"
|
|
>
|
|
<slot name="label">
|
|
{{ label }}
|
|
</slot>
|
|
<slot name="rightOfLabel" />
|
|
</label>
|
|
<div class="w-full">
|
|
<div class="flex items-center relative w-full">
|
|
<fluent-icon
|
|
v-if="icon"
|
|
size="16"
|
|
:icon="icon"
|
|
class="absolute left-2 transform text-slate-400 dark:text-slate-600 w-5 h-5"
|
|
/>
|
|
<slot />
|
|
</div>
|
|
<span
|
|
v-if="errorMessage && hasError"
|
|
class="text-xs text-n-ruby-9 dark:text-n-ruby-9 leading-2"
|
|
>
|
|
{{ errorMessage }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|