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