"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 (
{label && ( )}
{icon && (
{icon}
)}
{error && (

error {error}

)} {hint && !error && (

{hint}

)}
); }