@grafana/ui
Version:
Grafana Components Library
7 lines (6 loc) • 335 B
TypeScript
import { HTMLProps } from 'react';
export interface Props extends Omit<HTMLProps<HTMLTextAreaElement>, 'size'> {
/** Show an invalid state around the input */
invalid?: boolean;
}
export declare const TextArea: import("react").ForwardRefExoticComponent<Omit<Props, "ref"> & import("react").RefAttributes<HTMLTextAreaElement>>;