@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
9 lines (8 loc) • 401 B
TypeScript
import * as React from 'react';
import { InputProps } from "../../../index.type";
export interface SelectInputProps extends Omit<InputProps, 'onChange'> {
onClear?: (e: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>) => void;
onChange?: (value?: string) => void;
}
export declare const SearchInput: (props: SelectInputProps) => React.JSX.Element;
export default SearchInput;