import * as React from "react" import { cn } from "@/client/lib/utils" export type InputProps = Omit, 'value'> & { value?: string | number | readonly string[] | null } function Input({ className, type, value, ...props }: InputProps) { return ( ) } export { Input }