@spaced-out/ui-design-system
Version:
Sense UI components library
18 lines • 625 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { InputProps } from '../../components/Input';
type ClassNames = Readonly<{
wrapper?: string;
box?: string;
iconLeft?: string;
}>;
export interface SearchInputProps extends Omit<InputProps, 'classNames' | 'onClear' | 'isLoading'> {
classNames?: ClassNames;
onClear?: () => void;
isLoading?: boolean;
testId?: string;
rightSlot?: React.ReactNode;
}
export declare const SearchInput: Flow.AbstractComponent<SearchInputProps, HTMLInputElement>;
export {};
//# sourceMappingURL=SearchInput.d.ts.map