@atlaskit/textarea
Version:
A text area lets users enter long form text which spans over multiple lines.
18 lines (17 loc) • 606 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import React from 'react';
import { type TextAreaProps } from './types';
/**
* __Text area__
*
* A text area lets users enter long form text which spans over multiple lines.
*
* - [Examples](https://atlassian.design/components/textarea/examples)
* - [Code](https://atlassian.design/components/textarea/code)
* - [Usage](https://atlassian.design/components/textarea/usage)
*/
declare const TextArea: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<TextAreaProps, 'ref'> & React.RefAttributes<HTMLTextAreaElement>>>;
export default TextArea;