UNPKG

fui-fancyui

Version:
9 lines (8 loc) 371 B
import { InputHTMLAttributes } from 'react'; import { TTextAlignLC } from '../../../types/TTextAlignLC'; export type TTextInput = { align?: TTextAlignLC; type?: 'text' | 'email' | 'tel' | 'url'; }; export type TTextInputNativeAttrs = Omit<InputHTMLAttributes<HTMLInputElement>, 'type'>; export type TTextInputWithNativeAttrs = TTextInput & TTextInputNativeAttrs;