UNPKG

328 BTypeScriptView Raw
1import * as React from 'react';
2export interface TransferSearchProps {
3 prefixCls?: string;
4 placeholder?: string;
5 onChange?: (e: React.FormEvent<HTMLElement>) => void;
6 handleClear?: () => void;
7 value?: string;
8 disabled?: boolean;
9}
10export default function Search(props: TransferSearchProps): JSX.Element;