import * as React from "react" import { cn } from "@/lib/utils" const Input = React.forwardRef>( ({ className, type, ...props }, ref) => { // h-9 to match icon buttons and default buttons. return ( ) } ) Input.displayName = "Input" export { Input }