@commercetools-uikit/select-utils
Version:
Utilities for working with select components.
15 lines (14 loc) • 552 B
TypeScript
import type { Ref, JSX } from 'react';
import type { ClearIndicatorProps } from 'react-select';
import { TSelectInputCustomComponentProps } from "../types.js";
type TInnerProps = {
ref: Ref<HTMLButtonElement>;
} & JSX.IntrinsicElements['button'];
export type TClearIndicatorProps = {
innerProps: TInnerProps;
} & TSelectInputCustomComponentProps<ClearIndicatorProps>;
declare const ClearIndicator: {
(props: TClearIndicatorProps): import("@emotion/react/jsx-runtime").JSX.Element;
displayName: string;
};
export default ClearIndicator;