UNPKG

@jay-js/ui

Version:

A library of UI components for Jay JS with Tailwind CSS and daisyUI.

8 lines (7 loc) 396 B
import { TBase, TBaseTagMap } from "../Base/Base.types.js"; export type TTooltip<T extends TBaseTagMap> = { tip?: string; color?: "tooltip-primary" | "tooltip-secondary" | "tooltip-accent" | "tooltip-info" | "tooltip-success" | "tooltip-warning" | "tooltip-error"; position?: "tooltip-top" | "tooltip-bottom" | "tooltip-left" | "tooltip-right"; forceOpen?: boolean; } & TBase<T>;