fui-fancyui
Version:
FancyUI Libary
9 lines (8 loc) • 371 B
TypeScript
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;