import type * as React from "react"; import { Input as InputPrimitive } from "@base-ui/react/input"; import { cn } from "@/utils/style"; function Input({ className, type, ...props }: React.ComponentProps<"input">) { return ( ); } export { Input };