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.
16 lines
470 B
16 lines
470 B
import * as React from 'react';
|
|
export interface IHeaderSearchProps {
|
|
placeholder?: string;
|
|
dataSource?: string[];
|
|
defaultOpen?: boolean;
|
|
open?: boolean;
|
|
onSearch?: (value: string) => void;
|
|
onChange?: (value: string) => void;
|
|
onVisibleChange?: (visible: boolean) => void;
|
|
onPressEnter?: (value: string) => void;
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
}
|
|
|
|
export default class HeaderSearch extends React.Component<IHeaderSearchProps, any> {}
|