This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { Button } from "@blueprintjs/core"; | |
import * as Core from "@blueprintjs/select"; | |
export interface SuggestProps<T> extends Omit<Core.SuggestProps<T>, "onItemSelect"> { | |
/** | |
* If true, defaults the `inputProps.rightElement` to a clear button that will clear the selection. | |
* Ignored if `inputProps.rightElement` is provided. | |
* @default false | |
*/ |