UNPKG

@gdsc-dju/styled-components

Version:

GDSC-DJU Design System Component package for styled-components

25 lines (23 loc) 435 B
export type TextAreaAttributes = { value?: string; } & Pick< React.TextareaHTMLAttributes<HTMLTextAreaElement>, | 'autoComplete' | 'autoFocus' | 'disabled' | 'maxLength' | 'minLength' | 'name' | 'readOnly' | 'rows' | 'placeholder' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick' >; export type TextAreaProps = { className?: string; borderless?: boolean; hasError?: boolean; } & TextAreaAttributes;