movm
Version:
一个基于antdsegin的ui组件
33 lines (32 loc) • 989 B
TypeScript
interface inProps {
/** 可包含子元素 */
children: any;
/** 点击搜索按钮事件回调 */
tap: any;
/** 点击重置按钮事件回调 */
tapReset: any;
/** 需要展示的其它功能按钮(第一行显示) */
btns: any;
/** 需要展示的其它功能按钮(第二行显示) */
btns2: any;
/** 需要展示的其它功能按钮(展示在搜索框最上方) */
topBtns: any;
/** 需要展示的搜索重置后面的按钮 */
atRowBtn: any;
/** 主功能按钮显示文字 */
btnTitle: string;
/** 主功能按钮事件回调 */
open: any;
/** 搜索栏默认参数 */
defaultVal: any;
/** 第一行主功能按钮所占位置宽度 */
biw: any;
}
declare const SearchX: {
({ children, tap, tapReset, btns, btns2, btnTitle, open, defaultVal, biw, topBtns, atRowBtn }: inProps): JSX.Element;
defaultProps: {
isd: boolean;
biw: number;
};
};
export default SearchX;