import type { FC, InputHTMLAttributes } from "react"; type InputProps = InputHTMLAttributes; export const Input: FC = ({ className, ...props }) => { return ( ); };