UNPKG

@procore/core-react

Version:
9 lines (8 loc) 598 B
/// <reference types="react" /> import type { InputStylesProps } from '../Input/Input.styles'; import type { TextAreaProps } from './TextArea.types'; declare type StyledTextAreaProps = TextAreaProps & InputStylesProps & { $resize?: 'both' | 'horizontal' | 'none' | 'vertical'; }; export declare const StyledTextArea: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, StyledTextAreaProps>> & string; export {};