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