@davicotico/iconpicker
Version:
Vanilla Javascript Icon Picker (made with Typescript)
9 lines (8 loc) • 308 B
TypeScript
import { Instance } from "tippy.js";
import { PopOverPlacement } from "./types";
export declare class Popover {
protected instance: Instance;
constructor(container: HTMLDivElement, button: Element, placement?: PopOverPlacement, theme?: string);
hide(): void;
setTheme(theme: string): void;
}