@oceanbase/design
Version: 
The Design System of OceanBase
12 lines (11 loc) • 390 B
TypeScript
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;