"use client"; import { cn } from "@/shared/utils/cn"; export default function Input({ label, type = "text", placeholder, value, onChange, error, hint, icon, disabled = false, required = false, className, inputClassName, ...props }) { return (
error {error}
)} {hint && !error && ({hint}
)}