From 42f5978b364636a77f40e7e51a622e4f7dc4dc52 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 18:35:18 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/components/ui/Input.tsx diff --git a/src/components/ui/Input.tsx b/src/components/ui/Input.tsx new file mode 100644 index 0000000..6821992 --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,21 @@ +'use client' + +import React from 'react' +import { cn } from "@/lib/utils" + +interface InputProps extends React.InputHTMLAttributes { + error?: boolean +} + +export default function Input({ className, error, ...props }: InputProps) { + return ( + + ) +} \ No newline at end of file