grommet
Version:
focus on the essential experience
17 lines (12 loc) • 376 B
TypeScript
import * as React from 'react';
import { TextInputProps } from '../TextInput/index';
export interface DataSearchProps {
drop?: boolean;
responsive?: boolean;
updateOn?: 'change' | 'submit';
}
export interface DataSearchExtendedProps
extends TextInputProps,
DataSearchProps {}
declare const DataSearch: React.FC<DataSearchExtendedProps>;
export { DataSearch };