From df75dab6bda3b3fb32915bcba91c8bac6d84e3fb Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Sat, 25 Jul 2026 11:17:57 +0000 Subject: [PATCH] Deploy --- src/components/ui/Input.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 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..97cba89 --- /dev/null +++ b/src/components/ui/Input.tsx @@ -0,0 +1,20 @@ +'use client' + +import { cn } from "@/lib/utils" +import React from "react" + +interface InputProps extends React.InputHTMLAttributes { + // additional props can be added here +} + +export default function Input({ className, ...props }: InputProps) { + return ( + + ) +}