@gdsc-dju/styled-components
Version:
GDSC-DJU Design System Component package for styled-components
10 lines (9 loc) • 467 B
TypeScript
/// <reference types="react" />
export declare type TextAreaAttributes = {
value?: string;
} & Pick<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'autoComplete' | 'autoFocus' | 'disabled' | 'maxLength' | 'minLength' | 'name' | 'readOnly' | 'rows' | 'placeholder' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick'>;
export declare type TextAreaProps = {
className?: string;
borderless?: boolean;
hasError?: boolean;
} & TextAreaAttributes;