UNPKG

@linzjs/step-ag-grid

Version:

[![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release) > Reusable [ag-grid](https://www.ag-grid.com/) component for LINZ / Toitū te whenua.

11 lines (10 loc) 446 B
import { InputHTMLAttributes, ReactElement } from 'react'; export interface LuiTextAreaInputProps extends InputHTMLAttributes<HTMLTextAreaElement> { value: string; label?: ReactElement | string; mandatory?: boolean; helpText?: string; error?: ReactElement | string | boolean | null; allowTabToSave?: boolean; } export declare const TextAreaInput: (props: LuiTextAreaInputProps) => import("react/jsx-runtime").JSX.Element;