import React from 'react'; type Props = React.InputHTMLAttributes & { hasError?: boolean; }; /** * Input متنی پایهٔ design system: کلاس `cp-input`، حالت خطا (قاب قرمز)، * و forwardRef برای سازگاری با react-hook-form `register`. */ export default React.forwardRef(function Input( { hasError, className, style, ...rest }, ref, ) { return ( ); });