diff --git a/src/components/base/BaseInputDate.vue b/src/components/base/BaseInputDate.vue
index 5180894..f1b164f 100644
--- a/src/components/base/BaseInputDate.vue
+++ b/src/components/base/BaseInputDate.vue
@@ -1,53 +1,57 @@
- .input-wrapper.flex.gap-x-2.px-4.box-border(
- class="py-2.5",
- :style="{ minWidth: widthInput + 'px' }"
- )
- input.input.w-full.outline-0.not-italic.date.cursor-text(
- :value="value",
- type="date",
- @input="$emit('update:value', $event.target.value)",
- :placeholder="placeholder",
- :maxlength="maxLength",
- max="9999-12-31",
- min="0000-01-01"
- )
- .slot(v-if="withIcon" :class="iconPosition")
- slot.cursor-pointer
+ .flex.flex-col
+ .label(v-if="!!label") {{label}}
+ .field
+ input(
+ v-model="value",
+ type="date",
+ max="9999-12-31",
+ min="0000-01-01"
+)