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 ( + + ) +}