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