@spaced-out/ui-design-system
Version:
Sense UI components library
15 lines • 471 B
TypeScript
import type { Flow } from 'flow-to-typescript-codemod';
import type { InputProps } from '../Input';
type ClassNames = Readonly<{
wrapper?: string;
box?: string;
iconLeft?: string;
}>;
export type SearchInputProps = InputProps & {
classNames?: ClassNames;
onClear?: () => void;
isLoading?: boolean;
};
export declare const SearchInput: Flow.AbstractComponent<SearchInputProps, HTMLInputElement>;
export {};
//# sourceMappingURL=SearchInput.d.ts.map