'use client'; import { cn } from '@/lib/utils'; import { useState } from 'react'; import ShowIcon from '@icons/show-icon.svg'; import HideIcon from '@icons/hide-icon.svg'; export function Input({ className, isPassword, ...props }: any) { const [show, setShow] = useState(false); return (