import { cn } from '@/lib/utils' export interface InputProps extends React.InputHTMLAttributes { error?: string } export function Input({ className, error, id, ...props }: InputProps) { return (
{error && ( )}
) }