UNPKG

@gdsc-dju/styled-components

Version:

GDSC-DJU Design System Component package for styled-components

10 lines (9 loc) 427 B
/// <reference types="react" /> export declare type FileInputAttributes = { value?: string; } & Pick<React.InputHTMLAttributes<HTMLInputElement>, 'autoComplete' | 'autoFocus' | 'disabled' | 'name' | 'readOnly' | 'placeholder' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick'>; export declare type FileInputProps = { className?: string; hasError?: boolean; borderless?: boolean; } & FileInputAttributes;