UNPKG

@avarock/react-form

Version:

A customizable React form library with modular input components for building flexible forms

6 lines (5 loc) 359 B
import { ComponentProps } from "react"; import type { InputBaseProps } from "../types/baseTypes"; type InputTextAreaProps = InputBaseProps & ComponentProps<"textarea">; declare function InputTextArea({ name, label, value, onChangeInput, error, className, ...props }: InputTextAreaProps): import("react/jsx-runtime").JSX.Element; export default InputTextArea;