geist-ui-svelte
Version:
<img src="./src/lib/assets/demo-page.png">
23 lines (22 loc) • 672 B
TypeScript
import { SvelteComponent } from "svelte";
import "tippy.js/dist/tippy.css";
import "tippy.js/dist/border.css";
import { type Placement } from "tippy.js";
declare const __propDef: {
props: {
anchor: string | HTMLElement;
placement?: Placement;
hideOnClick?: boolean;
content: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ToolTipProps = typeof __propDef.props;
export type ToolTipEvents = typeof __propDef.events;
export type ToolTipSlots = typeof __propDef.slots;
export default class ToolTip extends SvelteComponent<ToolTipProps, ToolTipEvents, ToolTipSlots> {
}
export {};