UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 334 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): React.JSX.Element;