You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
import * as React from 'react';
|
|
export interface TransferSearchProps {
|
|
prefixCls?: string;
|
|
placeholder?: string;
|
|
onChange?: (e: React.FormEvent<HTMLElement>) => void;
|
|
handleClear?: () => void;
|
|
value?: string;
|
|
disabled?: boolean;
|
|
}
|
|
export default function Search(props: TransferSearchProps): JSX.Element;
|