import * as React from "react" import { cn } from "@/app/_lib/utils" export interface InputProps extends React.InputHTMLAttributes { error?: boolean } const Input = React.forwardRef( ({ className, type, error, ...props }, ref) => { return ( ) } ) Input.displayName = "Input" export { Input }