UNPKG

@oceanbase/design

Version:
12 lines (11 loc) 390 B
import React from 'react'; import type { InputProps as AntInputProps, InputRef } from 'antd'; export * from 'antd/es/input/Input'; export interface InputLocale { placeholder?: string; } export interface InputProps extends AntInputProps { locale?: InputLocale; } declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<InputRef>>; export default Input;