UNPKG

fwt-internship-uikit

Version:
10 lines (9 loc) 250 B
import { FC, InputHTMLAttributes } from 'react'; export interface IInput extends InputHTMLAttributes<HTMLInputElement> { /** * Current theme */ isDarkTheme: boolean; } declare const Input: FC<IInput>; export default Input;