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