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