instantsearch-ui-components
Version:
Common UI components for InstantSearch.
18 lines (17 loc) • 1.05 kB
TypeScript
import type { Renderer } from '../../types';
type IconProps = Pick<Renderer, 'createElement'> & {
className?: string | string[];
};
type LoadingIconProps = IconProps & {
isSearchStalled: boolean;
};
export declare function SubmitIcon({ createElement, className }: IconProps): JSX.Element;
export declare function LoadingIcon({ createElement, isSearchStalled, className, }: LoadingIconProps): JSX.Element;
export declare function ClearIcon({ createElement, className }: IconProps): JSX.Element;
export declare function ClockIcon({ createElement, className }: IconProps): JSX.Element;
export declare function TrashIcon({ createElement, className }: IconProps): JSX.Element;
export declare function ApplyIcon({ createElement, className }: IconProps): JSX.Element;
export declare function AiModeIcon({ createElement, className }: IconProps): JSX.Element;
export declare function SearchIcon({ createElement, className }: IconProps): JSX.Element;
export declare function BackIcon({ createElement, className }: IconProps): JSX.Element;
export {};