UNPKG

@gdsc-dju/styled-components

Version:

GDSC-DJU Design System Component package for styled-components

7 lines (6 loc) 299 B
import React, { HTMLAttributes } from 'react'; export interface TextAreaProps extends HTMLAttributes<HTMLTextAreaElement> { error?: boolean; disabled?: boolean; } export declare const TextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;