'use client'; import { Field, Input as HeadlessInput, Label } from '@headlessui/react'; import { InputHTMLAttributes } from 'react'; type InputProps = InputHTMLAttributes & { label: string; }; const Input = ({ label, ...props }: InputProps) => { return ( ); }; export default Input;