@procore/core-react
Version:
React library of Procore Design Guidelines
18 lines (11 loc) • 607 B
TypeScript
import React from 'react';
import type { TextAreaProps } from './TextArea.types';
/**
Text areas give our users space to input unformatted text. All text areas are
manually expandable by dragging the bottom right corner to the desired size.
If users need to add formatted text, see Text Editor.
@since 10.19.0
@see [Storybook](https://stories.core.procore.com/?path=/story/core-react_demos-textarea--demo)
@see [Design Guidelines](https://design.procore.com/text-area)
*/
export declare const TextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;