UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

12 lines (11 loc) 351 B
import React from 'react'; import { IInputProps } from '../input/NJInput'; /** * @deprecated Textarea is deprecated and should be replaced by FormItem with props isMultiLine */ export declare const NJTextarea: React.FC<ITextareaProps>; export interface ITextareaProps extends IInputProps { cols?: number; rows?: number; wrap?: string; }