UNPKG

shineout

Version:

A components library for React

14 lines (13 loc) 392 B
import { InputProps as UnStyledInputProps } from '@sheinx/base'; import { GetWithFieldProps } from '../hooks/use-field-common'; export interface BaseInputProps extends Omit<UnStyledInputProps, 'jssStyle'> { /** * @en Value * @cn 输入值 */ value?: string; } /** * @title Input */ export type InputProps = GetWithFieldProps<BaseInputProps, BaseInputProps['value']>;