import React from 'react'; import { cn } from '../../lib/utils.ts'; interface InputProps extends React.InputHTMLAttributes { label?: string; error?: string; } export const Input: React.FC = ({ label, error, className, ...props }) => { return (
{label && } {error &&

{error}

}
); };