UNPKG

@gdsc-dju/styled-components

Version:

GDSC-DJU Design System Component package for styled-components

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