diff --git a/front/src/components/Input.astro b/front/src/components/Input.astro
index db17398..a565dd4 100644
--- a/front/src/components/Input.astro
+++ b/front/src/components/Input.astro
@@ -1,14 +1,14 @@
---
import type { Input as Props } from 'types';
-const { type, name, label, autocomplete, placeholder} = Astro.props;
+const { type, name, label, autocomplete, placeholder, divClass, inputClass} = Astro.props;
---
<>
{
name && (
-
+
{label && (
)